org.apache.tika.metadata
Enum Property.ValueType
java.lang.Object
java.lang.Enum<Property.ValueType>
org.apache.tika.metadata.Property.ValueType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Property.ValueType>
- Enclosing class:
- Property
public static enum Property.ValueType
- extends java.lang.Enum<Property.ValueType>
Method Summary |
static Property.ValueType |
valueOf(java.lang.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. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
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
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(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 name
java.lang.NullPointerException
- if the argument is null
Copyright © 2007-2011 The Apache Software Foundation. All Rights Reserved.