public enum LdapDereferencingAlias extends Enum<LdapDereferencingAlias>
| Modifier and Type | Method and Description |
|---|---|
static LdapDereferencingAlias |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LdapDereferencingAlias[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LdapDereferencingAlias ALWAYS
public static final LdapDereferencingAlias NEVER
public static final LdapDereferencingAlias FINDING
public static final LdapDereferencingAlias SEARCHING
public static LdapDereferencingAlias[] values()
for (LdapDereferencingAlias c : LdapDereferencingAlias.values()) System.out.println(c);
public static LdapDereferencingAlias 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 © 2020. All rights reserved.