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 SummaryEnum Constants Enum Constant Description BOOLEANCLOSED_CHOICEDATEINTEGERLOCALEMIME_TYPEOPEN_CHOICEPROPER_NAMEPROPERTYRATIONALREALTEXTURIURLXPATH
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static Property.ValueTypevalueOf(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- 
BOOLEANpublic static final Property.ValueType BOOLEAN 
 - 
OPEN_CHOICEpublic static final Property.ValueType OPEN_CHOICE 
 - 
CLOSED_CHOICEpublic static final Property.ValueType CLOSED_CHOICE 
 - 
DATEpublic static final Property.ValueType DATE 
 - 
INTEGERpublic static final Property.ValueType INTEGER 
 - 
LOCALEpublic static final Property.ValueType LOCALE 
 - 
MIME_TYPEpublic static final Property.ValueType MIME_TYPE 
 - 
PROPER_NAMEpublic static final Property.ValueType PROPER_NAME 
 - 
RATIONALpublic static final Property.ValueType RATIONAL 
 - 
REALpublic static final Property.ValueType REAL 
 - 
TEXTpublic static final Property.ValueType TEXT 
 - 
URIpublic static final Property.ValueType URI 
 - 
URLpublic static final Property.ValueType URL 
 - 
XPATHpublic static final Property.ValueType XPATH 
 - 
PROPERTYpublic static final Property.ValueType PROPERTY 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-