public enum StateMachineState extends Enum<StateMachineState>
Enum Constant and Description |
---|
S01 |
S02 |
S03 |
S04 |
S05 |
S06 |
S07 |
S08 |
S09 |
S10 |
S11 |
S12 |
S13 |
S14 |
S15 |
S16 |
S17 |
S18 |
S19 |
S20 |
Modifier and Type | Method and Description |
---|---|
static StateMachineState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StateMachineState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateMachineState S01
public static final StateMachineState S02
public static final StateMachineState S03
public static final StateMachineState S04
public static final StateMachineState S05
public static final StateMachineState S06
public static final StateMachineState S07
public static final StateMachineState S08
public static final StateMachineState S09
public static final StateMachineState S10
public static final StateMachineState S11
public static final StateMachineState S12
public static final StateMachineState S13
public static final StateMachineState S14
public static final StateMachineState S15
public static final StateMachineState S16
public static final StateMachineState S17
public static final StateMachineState S18
public static final StateMachineState S19
public static final StateMachineState S20
public static StateMachineState[] values()
for (StateMachineState c : StateMachineState.values()) System.out.println(c);
public static StateMachineState 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 © 2016–2020 The Apache Software Foundation. All rights reserved.