public enum LocationType extends Enum<LocationType>
| 枚举常量和说明 |
|---|
ENTER
method enter.
|
EXCEPTION_EXIT
add try/catch
|
EXIT
return
|
INVOKE
method invoke operation
|
INVOKE_COMPLETED
method invoke operation
|
INVOKE_EXCEPTION_EXIT
method invoke exception
|
LINE
line number.
|
READ
field read operation.
|
READ_COMPLETED
field read operation.
|
SYNC_ENTER
synchronize operation
|
SYNC_ENTER_COMPLETED
synchronize operation
|
SYNC_EXIT
synchronize operation
|
SYNC_EXIT_COMPLETED
synchronize operation
|
THROW
throw
|
USER_DEFINE
user define.
|
WRITE
field write operation.
|
WRITE_COMPLETED
field write operation.
|
public static final LocationType USER_DEFINE
public static final LocationType ENTER
public static final LocationType LINE
public static final LocationType READ
public static final LocationType READ_COMPLETED
public static final LocationType WRITE
public static final LocationType WRITE_COMPLETED
public static final LocationType INVOKE
public static final LocationType INVOKE_COMPLETED
public static final LocationType INVOKE_EXCEPTION_EXIT
public static final LocationType SYNC_ENTER
public static final LocationType SYNC_ENTER_COMPLETED
public static final LocationType SYNC_EXIT
public static final LocationType SYNC_EXIT_COMPLETED
public static final LocationType THROW
public static final LocationType EXIT
public static final LocationType EXCEPTION_EXIT
public static LocationType[] values()
for (LocationType c : LocationType.values()) System.out.println(c);
public static LocationType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2018–2023. All rights reserved.