org.pentaho.di.repository
Enum RepositoryOperation
java.lang.Object
java.lang.Enum<RepositoryOperation>
org.pentaho.di.repository.RepositoryOperation
- All Implemented Interfaces:
- Serializable, Comparable<RepositoryOperation>
public enum RepositoryOperation
- extends Enum<RepositoryOperation>
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
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>