org.gcube.contentmanagement.timeseriesservice.impl.history
Enum CurationHistoryItem.OperationType

java.lang.Object
  extended by java.lang.Enum<CurationHistoryItem.OperationType>
      extended by org.gcube.contentmanagement.timeseriesservice.impl.history.CurationHistoryItem.OperationType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CurationHistoryItem.OperationType>
Enclosing class:
CurationHistoryItem

public static enum CurationHistoryItem.OperationType
extends java.lang.Enum<CurationHistoryItem.OperationType>


Enum Constant Summary
CHANGE_LABEL
           
COLUMN_TYPE_SET
           
MODIFY_ID
           
MODIFY_VALUE
           
REMOVE_ALL_ERRORS
           
REMOVE_COLUMN
           
REMOVE_ERROR
           
REPLACE_ALL
           
REPLACE_BY_ID
           
REPLACE_BY_VALUE
           
 
Method Summary
static CurationHistoryItem.OperationType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CurationHistoryItem.OperationType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

COLUMN_TYPE_SET

public static final CurationHistoryItem.OperationType COLUMN_TYPE_SET

REMOVE_ALL_ERRORS

public static final CurationHistoryItem.OperationType REMOVE_ALL_ERRORS

REMOVE_ERROR

public static final CurationHistoryItem.OperationType REMOVE_ERROR

REPLACE_ALL

public static final CurationHistoryItem.OperationType REPLACE_ALL

REPLACE_BY_ID

public static final CurationHistoryItem.OperationType REPLACE_BY_ID

REPLACE_BY_VALUE

public static final CurationHistoryItem.OperationType REPLACE_BY_VALUE

REMOVE_COLUMN

public static final CurationHistoryItem.OperationType REMOVE_COLUMN

CHANGE_LABEL

public static final CurationHistoryItem.OperationType CHANGE_LABEL

MODIFY_VALUE

public static final CurationHistoryItem.OperationType MODIFY_VALUE

MODIFY_ID

public static final CurationHistoryItem.OperationType MODIFY_ID
Method Detail

values

public static CurationHistoryItem.OperationType[] 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 (CurationHistoryItem.OperationType c : CurationHistoryItem.OperationType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static CurationHistoryItem.OperationType 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 name
java.lang.NullPointerException - if the argument is null