Enum EndTransactionRequestStates
- java.lang.Object
-
- java.lang.Enum<EndTransactionRequestStates>
-
- org.apache.directory.api.ldap.extras.extended.ads_impl.endTransaction.EndTransactionRequestStates
-
- All Implemented Interfaces:
Serializable,Comparable<EndTransactionRequestStates>,States
public enum EndTransactionRequestStates extends Enum<EndTransactionRequestStates> implements States
This class store the EndTransactionRequest's grammar constants. It is also used for debugging purposes.- Author:
- Apache Directory Project
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMMIT_STATEThe commit flagEND_STATEThe END_STATEIDENTFIER_STATEThe identifier stateLAST_STATELast stateSEQUENCE_STATEThe initial SEQUENCESTART_STATEstart state
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetGrammarName()Get the grammar nameEndTransactionRequestStatesgetStartState()StringgetState(int state)Get the string representing the statebooleanisEndState()static EndTransactionRequestStatesvalueOf(String name)Returns the enum constant of this type with the specified name.static EndTransactionRequestStates[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
END_STATE
public static final EndTransactionRequestStates END_STATE
The END_STATE
-
START_STATE
public static final EndTransactionRequestStates START_STATE
start state
-
SEQUENCE_STATE
public static final EndTransactionRequestStates SEQUENCE_STATE
The initial SEQUENCE
-
COMMIT_STATE
public static final EndTransactionRequestStates COMMIT_STATE
The commit flag
-
IDENTFIER_STATE
public static final EndTransactionRequestStates IDENTFIER_STATE
The identifier state
-
LAST_STATE
public static final EndTransactionRequestStates LAST_STATE
Last state
-
-
Method Detail
-
values
public static EndTransactionRequestStates[] 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 (EndTransactionRequestStates c : EndTransactionRequestStates.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EndTransactionRequestStates valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getGrammarName
public String getGrammarName()
Get the grammar name- Returns:
- The grammar name
-
getState
public String getState(int state)
Get the string representing the state- Parameters:
state- The state number- Returns:
- The String representing the state
-
isEndState
public boolean isEndState()
- Specified by:
isEndStatein interfaceStates- Returns:
- True if this is the END_STATE
-
getStartState
public EndTransactionRequestStates getStartState()
- Specified by:
getStartStatein interfaceStates- Returns:
- The START_STATE of the enum
-
-