public enum LdapOperation extends Enum<LdapOperation>
Object along with an
instance of BiFunction that can be used to invoke any
method on the LdapOperations instance| Enum Constant and Description |
|---|
AUTHENTICATE |
BIND |
FUNCTION_DRIVEN |
MODIFY_ATTRIBUTES |
SEARCH |
UNBIND |
| Modifier and Type | Method and Description |
|---|---|
static LdapOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LdapOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LdapOperation SEARCH
public static final LdapOperation BIND
public static final LdapOperation UNBIND
public static final LdapOperation AUTHENTICATE
public static final LdapOperation MODIFY_ATTRIBUTES
public static final LdapOperation FUNCTION_DRIVEN
public static LdapOperation[] values()
for (LdapOperation c : LdapOperation.values()) System.out.println(c);
public static LdapOperation 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 nullApache Camel