Package org.apache.tika.parser.ctakes
Enum CTAKESAnnotationProperty
- java.lang.Object
-
- java.lang.Enum<CTAKESAnnotationProperty>
-
- org.apache.tika.parser.ctakes.CTAKESAnnotationProperty
-
- All Implemented Interfaces:
Serializable
,Comparable<CTAKESAnnotationProperty>
public enum CTAKESAnnotationProperty extends Enum<CTAKESAnnotationProperty>
This enumeration includes the properties that anIdentifiedAnnotation
object can provide.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BEGIN
CONDITIONAL
CONFIDENCE
DISCOVERY_TECNIQUE
END
GENERIC
HISTORY_OF
ID
ONTOLOGY_CONCEPT_ARR
POLARITY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
static CTAKESAnnotationProperty
valueOf(String name)
Returns the enum constant of this type with the specified name.static CTAKESAnnotationProperty[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BEGIN
public static final CTAKESAnnotationProperty BEGIN
-
END
public static final CTAKESAnnotationProperty END
-
CONDITIONAL
public static final CTAKESAnnotationProperty CONDITIONAL
-
CONFIDENCE
public static final CTAKESAnnotationProperty CONFIDENCE
-
DISCOVERY_TECNIQUE
public static final CTAKESAnnotationProperty DISCOVERY_TECNIQUE
-
GENERIC
public static final CTAKESAnnotationProperty GENERIC
-
HISTORY_OF
public static final CTAKESAnnotationProperty HISTORY_OF
-
ID
public static final CTAKESAnnotationProperty ID
-
ONTOLOGY_CONCEPT_ARR
public static final CTAKESAnnotationProperty ONTOLOGY_CONCEPT_ARR
-
POLARITY
public static final CTAKESAnnotationProperty POLARITY
-
-
Method Detail
-
values
public static CTAKESAnnotationProperty[] 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 (CTAKESAnnotationProperty c : CTAKESAnnotationProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CTAKESAnnotationProperty 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
-
getName
public String getName()
-
-