Package science.aist.gtf.template
Enum TemplateTaskResultTypeEnum
- java.lang.Object
-
- java.lang.Enum<TemplateTaskResultTypeEnum>
-
- science.aist.gtf.template.TemplateTaskResultTypeEnum
-
- All Implemented Interfaces:
Serializable
,Comparable<TemplateTaskResultTypeEnum>
public enum TemplateTaskResultTypeEnum extends Enum<TemplateTaskResultTypeEnum>
The different available results of a template task
- Since:
- 1.0
- Author:
- Andreas Schuler
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TemplateTaskResultTypeEnum
fromBoolean(boolean result)
static TemplateTaskResultTypeEnum
fromString(String value)
String
toString()
static TemplateTaskResultTypeEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static TemplateTaskResultTypeEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FAILED
public static final TemplateTaskResultTypeEnum FAILED
-
SUCCESS
public static final TemplateTaskResultTypeEnum SUCCESS
-
-
Method Detail
-
values
public static TemplateTaskResultTypeEnum[] 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 (TemplateTaskResultTypeEnum c : TemplateTaskResultTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TemplateTaskResultTypeEnum 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
-
fromString
public static TemplateTaskResultTypeEnum fromString(String value)
-
fromBoolean
public static TemplateTaskResultTypeEnum fromBoolean(boolean result)
-
toString
public String toString()
- Overrides:
toString
in classEnum<TemplateTaskResultTypeEnum>
-
-