Enum DataCleansingChainExectutorTask.DataCleansingStepNodeProcessorResult
- java.lang.Object
-
- java.lang.Enum<DataCleansingChainExectutorTask.DataCleansingStepNodeProcessorResult>
-
- org.openforis.collect.datacleansing.DataCleansingChainExectutorTask.DataCleansingStepNodeProcessorResult
-
- All Implemented Interfaces:
Serializable,Comparable<DataCleansingChainExectutorTask.DataCleansingStepNodeProcessorResult>
- Enclosing class:
- DataCleansingChainExectutorTask
public static enum DataCleansingChainExectutorTask.DataCleansingStepNodeProcessorResult extends Enum<DataCleansingChainExectutorTask.DataCleansingStepNodeProcessorResult>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ATTRIBUTE_UPDATEDENTITY_DELETEDRECORD_TO_BE_DELETED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DataCleansingChainExectutorTask.DataCleansingStepNodeProcessorResultvalueOf(String name)Returns the enum constant of this type with the specified name.static DataCleansingChainExectutorTask.DataCleansingStepNodeProcessorResult[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ATTRIBUTE_UPDATED
public static final DataCleansingChainExectutorTask.DataCleansingStepNodeProcessorResult ATTRIBUTE_UPDATED
-
ENTITY_DELETED
public static final DataCleansingChainExectutorTask.DataCleansingStepNodeProcessorResult ENTITY_DELETED
-
RECORD_TO_BE_DELETED
public static final DataCleansingChainExectutorTask.DataCleansingStepNodeProcessorResult RECORD_TO_BE_DELETED
-
-
Method Detail
-
values
public static DataCleansingChainExectutorTask.DataCleansingStepNodeProcessorResult[] 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 (DataCleansingChainExectutorTask.DataCleansingStepNodeProcessorResult c : DataCleansingChainExectutorTask.DataCleansingStepNodeProcessorResult.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataCleansingChainExectutorTask.DataCleansingStepNodeProcessorResult 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
-
-