org.pentaho.di.repository
Enum RepositoryOperation

java.lang.Object
  extended by java.lang.Enum<RepositoryOperation>
      extended by org.pentaho.di.repository.RepositoryOperation
All Implemented Interfaces:
Serializable, Comparable<RepositoryOperation>

public enum RepositoryOperation
extends Enum<RepositoryOperation>


Enum Constant Summary
CREATE_DIRECTORY
           
DELETE_CLUSTER_SCHEMA
           
DELETE_DATABASE
           
DELETE_DIRECTORY
           
DELETE_JOB
           
DELETE_PARTITION_SCHEMA
           
DELETE_SLAVE_SERVER
           
DELETE_TRANSFORMATION
           
EXECUTE_JOB
           
EXECUTE_TRANSFORMATION
           
EXPLORE_DATABASE
           
LOCK_JOB
           
LOCK_TRANSFORMATION
           
MODIFY_CLUSTER_SCHEMA
           
MODIFY_DATABASE
           
MODIFY_JOB
           
MODIFY_PARTITION_SCHEMA
           
MODIFY_SLAVE_SERVER
           
MODIFY_TRANSFORMATION
           
READ_JOB
           
READ_TRANSFORMATION
           
RENAME_DIRECTORY
           
 
Method Summary
 String getDescription()
           
 String toString()
           
static RepositoryOperation valueOf(String name)
          Returns the enum constant of this type with the specified name.
static RepositoryOperation[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

READ_TRANSFORMATION

public static final RepositoryOperation READ_TRANSFORMATION

MODIFY_TRANSFORMATION

public static final RepositoryOperation MODIFY_TRANSFORMATION

DELETE_TRANSFORMATION

public static final RepositoryOperation DELETE_TRANSFORMATION

EXECUTE_TRANSFORMATION

public static final RepositoryOperation EXECUTE_TRANSFORMATION

LOCK_TRANSFORMATION

public static final RepositoryOperation LOCK_TRANSFORMATION

READ_JOB

public static final RepositoryOperation READ_JOB

MODIFY_JOB

public static final RepositoryOperation MODIFY_JOB

DELETE_JOB

public static final RepositoryOperation DELETE_JOB

EXECUTE_JOB

public static final RepositoryOperation EXECUTE_JOB

LOCK_JOB

public static final RepositoryOperation LOCK_JOB

MODIFY_DATABASE

public static final RepositoryOperation MODIFY_DATABASE

DELETE_DATABASE

public static final RepositoryOperation DELETE_DATABASE

EXPLORE_DATABASE

public static final RepositoryOperation EXPLORE_DATABASE

MODIFY_SLAVE_SERVER

public static final RepositoryOperation MODIFY_SLAVE_SERVER

DELETE_SLAVE_SERVER

public static final RepositoryOperation DELETE_SLAVE_SERVER

MODIFY_CLUSTER_SCHEMA

public static final RepositoryOperation MODIFY_CLUSTER_SCHEMA

DELETE_CLUSTER_SCHEMA

public static final RepositoryOperation DELETE_CLUSTER_SCHEMA

MODIFY_PARTITION_SCHEMA

public static final RepositoryOperation MODIFY_PARTITION_SCHEMA

DELETE_PARTITION_SCHEMA

public static final RepositoryOperation DELETE_PARTITION_SCHEMA

CREATE_DIRECTORY

public static final RepositoryOperation CREATE_DIRECTORY

RENAME_DIRECTORY

public static final RepositoryOperation RENAME_DIRECTORY

DELETE_DIRECTORY

public static final RepositoryOperation DELETE_DIRECTORY
Method Detail

values

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

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

valueOf

public static RepositoryOperation 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 name
NullPointerException - if the argument is null

getDescription

public String getDescription()

toString

public String toString()
Overrides:
toString in class Enum<RepositoryOperation>