org.apache.tika.metadata
Enum Property.ValueType

java.lang.Object
  extended by java.lang.Enum<Property.ValueType>
      extended by 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
BOOLEAN
           
CLOSED_CHOICE
           
DATE
           
INTEGER
           
LOCALE
           
MIME_TYPE
           
OPEN_CHOICE
           
PROPER_NAME
           
RATIONAL
           
REAL
           
TEXT
           
URI
           
URL
           
XPATH
           
 
Method Summary
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.
 
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
 

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
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 name
NullPointerException - if the argument is null


Copyright © 2007-2012 The Apache Software Foundation. All Rights Reserved.