Enum DataCleansingStepValue.UpdateType
- java.lang.Object
-
- java.lang.Enum<DataCleansingStepValue.UpdateType>
-
- org.openforis.collect.datacleansing.DataCleansingStepValue.UpdateType
-
- All Implemented Interfaces:
Serializable,Comparable<DataCleansingStepValue.UpdateType>
- Enclosing class:
- DataCleansingStepValue
public static enum DataCleansingStepValue.UpdateType extends Enum<DataCleansingStepValue.UpdateType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DataCleansingStepValue.UpdateTypefromCode(char code)static DataCleansingStepValue.UpdateTypefromCode(String code)chargetCode()static DataCleansingStepValue.UpdateTypevalueOf(String name)Returns the enum constant of this type with the specified name.static DataCleansingStepValue.UpdateType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ATTRIBUTE
public static final DataCleansingStepValue.UpdateType ATTRIBUTE
-
FIELD
public static final DataCleansingStepValue.UpdateType FIELD
-
-
Method Detail
-
values
public static DataCleansingStepValue.UpdateType[] 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 (DataCleansingStepValue.UpdateType c : DataCleansingStepValue.UpdateType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataCleansingStepValue.UpdateType 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
-
fromCode
public static DataCleansingStepValue.UpdateType fromCode(String code)
-
fromCode
public static DataCleansingStepValue.UpdateType fromCode(char code)
-
getCode
public char getCode()
-
-