Enum ComputationsPropertiesType
- java.lang.Object
-
- java.lang.Enum<ComputationsPropertiesType>
-
- org.gcube.portlets.widgets.dataminermanagerwidget.client.computations.ComputationsPropertiesType
-
- All Implemented Interfaces:
Serializable,Comparable<ComputationsPropertiesType>
public enum ComputationsPropertiesType extends Enum<ComputationsPropertiesType>
- Author:
- Giancarlo Panichi
-
-
Enum Constant Summary
Enum Constants Enum Constant Description END_DATEEXECUTION_TYPEOPERATOR_NAMESTART_DATESTATUSVRE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ComputationsPropertiesTypegetFromId(String id)StringgetLabel()StringtoString()static ComputationsPropertiesTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ComputationsPropertiesType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OPERATOR_NAME
public static final ComputationsPropertiesType OPERATOR_NAME
-
START_DATE
public static final ComputationsPropertiesType START_DATE
-
END_DATE
public static final ComputationsPropertiesType END_DATE
-
STATUS
public static final ComputationsPropertiesType STATUS
-
EXECUTION_TYPE
public static final ComputationsPropertiesType EXECUTION_TYPE
-
VRE
public static final ComputationsPropertiesType VRE
-
-
Method Detail
-
values
public static ComputationsPropertiesType[] 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 (ComputationsPropertiesType c : ComputationsPropertiesType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ComputationsPropertiesType 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<ComputationsPropertiesType>
-
getLabel
public String getLabel()
-
getFromId
public static ComputationsPropertiesType getFromId(String id)
-
-