public enum LocationType extends Enum<LocationType>
| Enum Constant and Description |
|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
static LocationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LocationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
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 - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018–2021. All rights reserved.