com.ibm.workplace.wcm.api.extensions.operation
Enum OperationCheckPlugin.Operation

java.lang.Object
  extended by java.lang.Enum<OperationCheckPlugin.Operation>
      extended by com.ibm.workplace.wcm.api.extensions.operation.OperationCheckPlugin.Operation
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OperationCheckPlugin.Operation>
Enclosing interface:
OperationCheckPlugin

public static enum OperationCheckPlugin.Operation
extends java.lang.Enum<OperationCheckPlugin.Operation>

The set of possible operations that can be enforced via the OperationCheckPlugin.


Enum Constant Summary
COPY
           
CREATE
          Whenever a new artifact will be created in the system a check can be performed to stop the item from being committed into the repository.
IMPORT
           
 
Method Summary
static OperationCheckPlugin.Operation valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OperationCheckPlugin.Operation[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CREATE

public static final OperationCheckPlugin.Operation CREATE
Whenever a new artifact will be created in the system a check can be performed to stop the item from being committed into the repository.


COPY

public static final OperationCheckPlugin.Operation COPY

IMPORT

public static final OperationCheckPlugin.Operation IMPORT
Method Detail

values

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

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

valueOf

public static OperationCheckPlugin.Operation 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