Enum Oid.OidFSAState
- java.lang.Object
-
- java.lang.Enum<Oid.OidFSAState>
-
- org.apache.directory.api.asn1.util.Oid.OidFSAState
-
- All Implemented Interfaces:
Serializable,Comparable<Oid.OidFSAState>
- Enclosing class:
- Oid
private static enum Oid.OidFSAState extends Enum<Oid.OidFSAState>
The OID FSA states. We have the following Finite State Automaton :(Start) --['0','1']--> (A) (start) --['2']--> (F) (A) --['.']--> (B) (B) --['0']--> (D) (B) --['1'..'3']--> (C) (B) --['4'..'9']--> (E) (C) --[]--> (End) (C) --['.']--> (K) (C) --['0'..'9']--> (E) (D) --[]--> (End) (D) --['.']--> (K) (E) --[]--> (End) (E) --['.']--> (K) (F) --['.']--> (G) (G) --['0']--> (I) (G) --['1'..'9']--> (H) (H) --[]--> (End) (H) --['.']--> (K) (H) --['0'..'9']--> (J) (I) --[]--> (End) (I) --['.']--> (K) (J) --[]--> (End) (J) --['.']--> (K) (J) --['0'..'9']--> (J) (K) --['0']--> (M) (K) --['1'..'9']--> (L) (L) --[]--> (End) (L) --['.']--> (K) (L) --['0'..'9']--> (L) (M) --[]--> (End) (M) --['.']--> (K)
-
-
Constructor Summary
Constructors Modifier Constructor Description privateOidFSAState()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Oid.OidFSAStatevalueOf(String name)Returns the enum constant of this type with the specified name.static Oid.OidFSAState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
START
public static final Oid.OidFSAState START
-
STATE_A
public static final Oid.OidFSAState STATE_A
-
STATE_B
public static final Oid.OidFSAState STATE_B
-
STATE_C
public static final Oid.OidFSAState STATE_C
-
STATE_D
public static final Oid.OidFSAState STATE_D
-
STATE_E
public static final Oid.OidFSAState STATE_E
-
STATE_F
public static final Oid.OidFSAState STATE_F
-
STATE_G
public static final Oid.OidFSAState STATE_G
-
STATE_H
public static final Oid.OidFSAState STATE_H
-
STATE_I
public static final Oid.OidFSAState STATE_I
-
STATE_J
public static final Oid.OidFSAState STATE_J
-
STATE_K
public static final Oid.OidFSAState STATE_K
-
STATE_L
public static final Oid.OidFSAState STATE_L
-
STATE_M
public static final Oid.OidFSAState STATE_M
-
-
Method Detail
-
values
public static Oid.OidFSAState[] 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 (Oid.OidFSAState c : Oid.OidFSAState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Oid.OidFSAState 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
-
-