Enum ContextState
- java.lang.Object
-
- java.lang.Enum<ContextState>
-
- org.gcube.informationsystem.contexts.reference.ContextState
-
- All Implemented Interfaces:
Serializable,Comparable<ContextState>
public enum ContextState extends Enum<ContextState>
- Author:
- Luca Frosini (ISTI - CNR)
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ContextStatefromString(String state)StringgetState()static ContextStatevalueOf(String name)Returns the enum constant of this type with the specified name.static ContextState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATED
public static final ContextState CREATED
-
ACTIVE
public static final ContextState ACTIVE
-
SUSPENDED
public static final ContextState SUSPENDED
-
DELETED
public static final ContextState DELETED
-
-
Field Detail
-
state
protected String state
-
-
Method Detail
-
values
public static ContextState[] 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 (ContextState c : ContextState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ContextState 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
-
getState
public String getState()
-
fromString
public static ContextState fromString(String state)
-
-