public enum SimpleNameLookupMode extends java.lang.Enum<SimpleNameLookupMode>
| Enum Constant and Description |
|---|
BASE_TYPE_REFERENCE |
EXPRESSION |
INVOCATION_TARGET |
TYPE |
TYPE_IN_IMPORT_DECLARATION |
| Modifier and Type | Method and Description |
|---|---|
static SimpleNameLookupMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SimpleNameLookupMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleNameLookupMode EXPRESSION
public static final SimpleNameLookupMode INVOCATION_TARGET
public static final SimpleNameLookupMode TYPE
public static final SimpleNameLookupMode TYPE_IN_IMPORT_DECLARATION
public static final SimpleNameLookupMode BASE_TYPE_REFERENCE
public static SimpleNameLookupMode[] values()
for (SimpleNameLookupMode c : SimpleNameLookupMode.values()) System.out.println(c);
public static SimpleNameLookupMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null