public enum BindStatus extends java.lang.Enum<BindStatus>
| Enum Constant and Description |
|---|
ANONYMOUS
We are in Anonymous state.
|
AUTHENTICATED
The user has been authenticated
|
SASL_AUTH_PENDING
We have received a SASL BindRequest
|
SIMPLE_AUTH_PENDING
We have received a Simple BindRequest
|
| Modifier and Type | Method and Description |
|---|---|
static BindStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BindStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BindStatus ANONYMOUS
public static final BindStatus SIMPLE_AUTH_PENDING
public static final BindStatus SASL_AUTH_PENDING
public static final BindStatus AUTHENTICATED
public static BindStatus[] values()
for (BindStatus c : BindStatus.values()) System.out.println(c);
public static BindStatus 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