public enum DerefAliases extends 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(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(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 © 2003-2019 Virginia Tech. All Rights Reserved.