Package org.freedesktop.dbus.connections
Enum SASL.SaslAuthState
- java.lang.Object
-
- java.lang.Enum<SASL.SaslAuthState>
-
- org.freedesktop.dbus.connections.SASL.SaslAuthState
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SASL.SaslAuthState>
- Enclosing class:
- SASL
static enum SASL.SaslAuthState extends java.lang.Enum<SASL.SaslAuthState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTHENTICATEDFAILEDFINISHEDINITIAL_STATENEGOTIATE_UNIX_FDWAIT_AUTHWAIT_BEGINWAIT_DATAWAIT_OKWAIT_REJECT
-
Constructor Summary
Constructors Modifier Constructor Description privateSaslAuthState()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SASL.SaslAuthStatevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SASL.SaslAuthState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INITIAL_STATE
public static final SASL.SaslAuthState INITIAL_STATE
-
WAIT_DATA
public static final SASL.SaslAuthState WAIT_DATA
-
WAIT_OK
public static final SASL.SaslAuthState WAIT_OK
-
WAIT_REJECT
public static final SASL.SaslAuthState WAIT_REJECT
-
WAIT_AUTH
public static final SASL.SaslAuthState WAIT_AUTH
-
WAIT_BEGIN
public static final SASL.SaslAuthState WAIT_BEGIN
-
AUTHENTICATED
public static final SASL.SaslAuthState AUTHENTICATED
-
NEGOTIATE_UNIX_FD
public static final SASL.SaslAuthState NEGOTIATE_UNIX_FD
-
FINISHED
public static final SASL.SaslAuthState FINISHED
-
FAILED
public static final SASL.SaslAuthState FAILED
-
-
Method Detail
-
values
public static SASL.SaslAuthState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SASL.SaslAuthState c : SASL.SaslAuthState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SASL.SaslAuthState valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-