Package adams.data.groupextraction
Enum SpreadSheetCellWithLookUp.MissingLookUpKey
- java.lang.Object
-
- java.lang.Enum<SpreadSheetCellWithLookUp.MissingLookUpKey>
-
- adams.data.groupextraction.SpreadSheetCellWithLookUp.MissingLookUpKey
-
- All Implemented Interfaces:
Serializable
,Comparable<SpreadSheetCellWithLookUp.MissingLookUpKey>
- Enclosing class:
- SpreadSheetCellWithLookUp
public static enum SpreadSheetCellWithLookUp.MissingLookUpKey extends Enum<SpreadSheetCellWithLookUp.MissingLookUpKey>
Describes the behaviors if a lookup key is not found.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OUTPUT_KEY
output the key.OUTPUT_MISSING_VALUE
output the missing value.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SpreadSheetCellWithLookUp.MissingLookUpKey
valueOf(String name)
Returns the enum constant of this type with the specified name.static SpreadSheetCellWithLookUp.MissingLookUpKey[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OUTPUT_MISSING_VALUE
public static final SpreadSheetCellWithLookUp.MissingLookUpKey OUTPUT_MISSING_VALUE
output the missing value.
-
OUTPUT_KEY
public static final SpreadSheetCellWithLookUp.MissingLookUpKey OUTPUT_KEY
output the key.
-
-
Method Detail
-
values
public static SpreadSheetCellWithLookUp.MissingLookUpKey[] 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 (SpreadSheetCellWithLookUp.MissingLookUpKey c : SpreadSheetCellWithLookUp.MissingLookUpKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SpreadSheetCellWithLookUp.MissingLookUpKey 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
-
-