Package adams.flow.execution
Enum ExecutionType
- java.lang.Object
-
- java.lang.Enum<ExecutionType>
-
- adams.flow.execution.ExecutionType
-
- All Implemented Interfaces:
EnumWithCustomDisplay<ExecutionType>
,EnumWithCustomParsing<ExecutionType>
,Serializable
,Comparable<ExecutionType>
public enum ExecutionType extends Enum<ExecutionType> implements EnumWithCustomDisplay<ExecutionType>
Enumeration of flow execution types.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ExecutionType
parse(String s)
Parses the given string and returns the associated enum.String
toDisplay()
Returns the display string.String
toRaw()
Returns the raw enum string.String
toString()
Returns the display string.static String
toString(AbstractOption option, Object object)
Returns the enum as string.static ExecutionType
valueOf(AbstractOption option, String str)
Returns an enum generated from the string.static ExecutionType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ExecutionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INPUT
public static final ExecutionType INPUT
-
EXECUTE
public static final ExecutionType EXECUTE
-
OUTPUT
public static final ExecutionType OUTPUT
-
-
Method Detail
-
values
public static ExecutionType[] 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 (ExecutionType c : ExecutionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExecutionType 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
-
toDisplay
public String toDisplay()
Returns the display string.- Specified by:
toDisplay
in interfaceEnumWithCustomDisplay<ExecutionType>
- Returns:
- the display string
-
toRaw
public String toRaw()
Returns the raw enum string.- Specified by:
toRaw
in interfaceEnumWithCustomDisplay<ExecutionType>
- Returns:
- the raw enum string
-
toString
public String toString()
Returns the display string.- Overrides:
toString
in classEnum<ExecutionType>
- Returns:
- the display string
-
parse
public ExecutionType parse(String s)
Parses the given string and returns the associated enum.- Specified by:
parse
in interfaceEnumWithCustomParsing<ExecutionType>
- Parameters:
s
- the string to parse- Returns:
- the enum or null if not found
-
toString
public static String toString(AbstractOption option, Object object)
Returns the enum as string.- Parameters:
option
- the current optionobject
- the enum object to convert- Returns:
- the generated string
-
valueOf
public static ExecutionType valueOf(AbstractOption option, String str)
Returns an enum generated from the string.- Parameters:
option
- the current optionstr
- the string to convert to an enum- Returns:
- the generated enum or null in case of error
-
-