public enum DerefAliases extends java.lang.Enum<DerefAliases>
| Enum Constant and Description |
|---|
ALWAYS
dereference when searching for the starting entry and when searching the entries beneath the starting point.
|
FINDING
dereference when searching for the starting entry but not when searching the entries beneath the starting point.
|
NEVER
never dereference aliases.
|
SEARCHING
dereference when searching the entries beneath the starting point but not when searching for the starting entry.
|
| Modifier and Type | Method and Description |
|---|---|
static DerefAliases |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DerefAliases[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DerefAliases NEVER
public static final DerefAliases SEARCHING
public static final DerefAliases FINDING
public static final DerefAliases ALWAYS
public static DerefAliases[] values()
for (DerefAliases c : DerefAliases.values()) System.out.println(c);
public static DerefAliases 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