Package org.apache.tika.metadata
Enum Property.ValueType
- java.lang.Object
-
- java.lang.Enum<Property.ValueType>
-
- org.apache.tika.metadata.Property.ValueType
-
- All Implemented Interfaces:
Serializable
,Comparable<Property.ValueType>
- Enclosing class:
- Property
public static enum Property.ValueType extends Enum<Property.ValueType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOLEAN
CLOSED_CHOICE
DATE
INTEGER
LOCALE
MIME_TYPE
OPEN_CHOICE
PROPER_NAME
PROPERTY
RATIONAL
REAL
TEXT
URI
URL
XPATH
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Property.ValueType
valueOf(String name)
Returns the enum constant of this type with the specified name.static Property.ValueType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOOLEAN
public static final Property.ValueType BOOLEAN
-
OPEN_CHOICE
public static final Property.ValueType OPEN_CHOICE
-
CLOSED_CHOICE
public static final Property.ValueType CLOSED_CHOICE
-
DATE
public static final Property.ValueType DATE
-
INTEGER
public static final Property.ValueType INTEGER
-
LOCALE
public static final Property.ValueType LOCALE
-
MIME_TYPE
public static final Property.ValueType MIME_TYPE
-
PROPER_NAME
public static final Property.ValueType PROPER_NAME
-
RATIONAL
public static final Property.ValueType RATIONAL
-
REAL
public static final Property.ValueType REAL
-
TEXT
public static final Property.ValueType TEXT
-
URI
public static final Property.ValueType URI
-
URL
public static final Property.ValueType URL
-
XPATH
public static final Property.ValueType XPATH
-
PROPERTY
public static final Property.ValueType PROPERTY
-
-
Method Detail
-
values
public static Property.ValueType[] 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 (Property.ValueType c : Property.ValueType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Property.ValueType 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
-
-