|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<DerefAliases>
org.ldaptive.DerefAliases
public enum DerefAliases
Enum to define how aliases are dereferenced.
| Enum Constant Summary | |
|---|---|
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. |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final DerefAliases NEVER
public static final DerefAliases SEARCHING
public static final DerefAliases FINDING
public static final DerefAliases ALWAYS
| Method Detail |
|---|
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 name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||