Package com.tietoenator.trip.jxp.data
Enum TdbNlpInfo.FieldMappingType
- java.lang.Object
-
- java.lang.Enum<TdbNlpInfo.FieldMappingType>
-
- com.tietoenator.trip.jxp.data.TdbNlpInfo.FieldMappingType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TdbNlpInfo.FieldMappingType>
- Enclosing class:
- TdbNlpInfo
public static enum TdbNlpInfo.FieldMappingType extends java.lang.Enum<TdbNlpInfo.FieldMappingType>
Field name mapping mode for extracted meta-data.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Fields
Each meta-data category correspond to a separate TRIP field in the database.None
Invalid or non-existing mapping.Tuples
The database has two fields that form a name/value pair tuple list that can store any category name and value found during analysis.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TdbNlpInfo.FieldMappingType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TdbNlpInfo.FieldMappingType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
None
public static final TdbNlpInfo.FieldMappingType None
Invalid or non-existing mapping.
-
Fields
public static final TdbNlpInfo.FieldMappingType Fields
Each meta-data category correspond to a separate TRIP field in the database.
-
Tuples
public static final TdbNlpInfo.FieldMappingType Tuples
The database has two fields that form a name/value pair tuple list that can store any category name and value found during analysis.
-
-
Method Detail
-
values
public static TdbNlpInfo.FieldMappingType[] 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 (TdbNlpInfo.FieldMappingType c : TdbNlpInfo.FieldMappingType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TdbNlpInfo.FieldMappingType 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
-
-