Enum PipelineOperationType
- java.lang.Object
-
- java.lang.Enum<PipelineOperationType>
-
- net.n2oapp.framework.api.metadata.pipeline.PipelineOperationType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PipelineOperationType>
public enum PipelineOperationType extends java.lang.Enum<PipelineOperationType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BINDCOMPILECOMPILE_CACHECOMPILE_TRANSFORMCOPYMERGEPERSISTREADSOURCE_CACHESOURCE_TRANSFORMVALIDATE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PipelineOperationTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PipelineOperationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
READ
public static final PipelineOperationType READ
-
MERGE
public static final PipelineOperationType MERGE
-
VALIDATE
public static final PipelineOperationType VALIDATE
-
SOURCE_TRANSFORM
public static final PipelineOperationType SOURCE_TRANSFORM
-
SOURCE_CACHE
public static final PipelineOperationType SOURCE_CACHE
-
COPY
public static final PipelineOperationType COPY
-
COMPILE
public static final PipelineOperationType COMPILE
-
COMPILE_TRANSFORM
public static final PipelineOperationType COMPILE_TRANSFORM
-
COMPILE_CACHE
public static final PipelineOperationType COMPILE_CACHE
-
BIND
public static final PipelineOperationType BIND
-
PERSIST
public static final PipelineOperationType PERSIST
-
-
Method Detail
-
values
public static PipelineOperationType[] 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 (PipelineOperationType c : PipelineOperationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PipelineOperationType 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 namejava.lang.NullPointerException- if the argument is null
-
-