Package com.senzing.g2.engine.plugin
Enum FeatureElementValueFormat
- java.lang.Object
-
- java.lang.Enum<FeatureElementValueFormat>
-
- com.senzing.g2.engine.plugin.FeatureElementValueFormat
-
- All Implemented Interfaces:
Serializable
,Comparable<FeatureElementValueFormat>
public enum FeatureElementValueFormat extends Enum<FeatureElementValueFormat>
Enumerates the various formats format feature element values.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FeatureElementValueFormat
valueOf(String name)
Returns the enum constant of this type with the specified name.static FeatureElementValueFormat[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final FeatureElementValueFormat NONE
For unformatted values that are taken literally.
-
LIST
public static final FeatureElementValueFormat LIST
Comma-separated list format.
-
-
Method Detail
-
values
public static FeatureElementValueFormat[] 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 (FeatureElementValueFormat c : FeatureElementValueFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FeatureElementValueFormat 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
-
-