protected static enum AbstractFSMParser.Part extends Enum<AbstractFSMParser.Part>
| Enum Constant and Description |
|---|
DataDefinition |
StateVectors |
Transitions |
| Modifier and Type | Method and Description |
|---|---|
static AbstractFSMParser.Part |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractFSMParser.Part[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractFSMParser.Part DataDefinition
public static final AbstractFSMParser.Part StateVectors
public static final AbstractFSMParser.Part Transitions
public static AbstractFSMParser.Part[] values()
for (AbstractFSMParser.Part c : AbstractFSMParser.Part.values()) System.out.println(c);
public static AbstractFSMParser.Part 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 © 2020. All rights reserved.