org.aspectj.lang.reflect
public enum PerClauseKind extends Enum<PerClauseKind>
Enum Constant and Description |
---|
PERCFLOW |
PERCFLOWBELOW |
PERTARGET |
PERTHIS |
PERTYPEWITHIN |
SINGLETON |
Modifier and Type | Method and Description |
---|---|
static PerClauseKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PerClauseKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PerClauseKind SINGLETON
public static final PerClauseKind PERTHIS
public static final PerClauseKind PERTARGET
public static final PerClauseKind PERCFLOW
public static final PerClauseKind PERCFLOWBELOW
public static final PerClauseKind PERTYPEWITHIN
public static PerClauseKind[] values()
for (PerClauseKind c : PerClauseKind.values()) System.out.println(c);
public static PerClauseKind 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 null