Package 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>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description 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.
-
-
-
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
-
SCHEDULE_TRANSFORMATION
public static final RepositoryOperation SCHEDULE_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
-
SCHEDULE_JOB
public static final RepositoryOperation SCHEDULE_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 nameNullPointerException
- if the argument is null
-
getDescription
public String getDescription()
-
toString
public String toString()
- Overrides:
toString
in classEnum<RepositoryOperation>
-
-