private static enum Oid.OidFSAState extends Enum<Oid.OidFSAState>
(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)
| Enum Constant and Description |
|---|
START |
STATE_A |
STATE_B |
STATE_C |
STATE_D |
STATE_E |
STATE_F |
STATE_G |
STATE_H |
STATE_I |
STATE_J |
STATE_K |
STATE_L |
STATE_M |
| Modifier and Type | Method and Description |
|---|---|
static Oid.OidFSAState |
valueOf(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.
|
public static final Oid.OidFSAState START
public static final Oid.OidFSAState STATE_A
public static final Oid.OidFSAState STATE_B
public static final Oid.OidFSAState STATE_C
public static final Oid.OidFSAState STATE_D
public static final Oid.OidFSAState STATE_E
public static final Oid.OidFSAState STATE_F
public static final Oid.OidFSAState STATE_G
public static final Oid.OidFSAState STATE_H
public static final Oid.OidFSAState STATE_I
public static final Oid.OidFSAState STATE_J
public static final Oid.OidFSAState STATE_K
public static final Oid.OidFSAState STATE_L
public static final Oid.OidFSAState STATE_M
public static Oid.OidFSAState[] values()
for (Oid.OidFSAState c : Oid.OidFSAState.values()) System.out.println(c);
public static Oid.OidFSAState 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 nullCopyright © 2003–2022 The Apache Software Foundation. All rights reserved.