Enum EntityOperationsState
- java.lang.Object
-
- java.lang.Enum<EntityOperationsState>
-
- ch.systemsx.cisd.openbis.generic.shared.basic.EntityOperationsState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<EntityOperationsState>
public enum EntityOperationsState extends java.lang.Enum<EntityOperationsState>
The state of the entity operations registration process.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IN_PROGRESS
Operation in progressNO_OPERATION
Neither succeeded, nor in progressOPERATION_SUCCEEDED
Operations succeeded
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EntityOperationsState
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static EntityOperationsState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_OPERATION
public static final EntityOperationsState NO_OPERATION
Neither succeeded, nor in progress
-
OPERATION_SUCCEEDED
public static final EntityOperationsState OPERATION_SUCCEEDED
Operations succeeded
-
IN_PROGRESS
public static final EntityOperationsState IN_PROGRESS
Operation in progress
-
-
Method Detail
-
values
public static EntityOperationsState[] 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 (EntityOperationsState c : EntityOperationsState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EntityOperationsState valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-