Enum AbstractFSMParser.Part
- java.lang.Object
-
- java.lang.Enum<AbstractFSMParser.Part>
-
- net.automatalib.serialization.fsm.parser.AbstractFSMParser.Part
-
- All Implemented Interfaces:
Serializable
,Comparable<AbstractFSMParser.Part>
- Enclosing class:
- AbstractFSMParser<I>
protected static enum AbstractFSMParser.Part extends Enum<AbstractFSMParser.Part>
An enumeration for the three parts in the FSM file.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATA_DEFINITION
STATE_VECTORS
TRANSITIONS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
DATA_DEFINITION
public static final AbstractFSMParser.Part DATA_DEFINITION
-
STATE_VECTORS
public static final AbstractFSMParser.Part STATE_VECTORS
-
TRANSITIONS
public static final AbstractFSMParser.Part TRANSITIONS
-
-
Method Detail
-
values
public static AbstractFSMParser.Part[] 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 (AbstractFSMParser.Part c : AbstractFSMParser.Part.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractFSMParser.Part 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
-
-