com.sun.labs.minion
Enum FieldInfo.Attribute

java.lang.Object
  extended by java.lang.Enum<FieldInfo.Attribute>
      extended by com.sun.labs.minion.FieldInfo.Attribute
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FieldInfo.Attribute>
Enclosing class:
FieldInfo

public static enum FieldInfo.Attribute
extends java.lang.Enum<FieldInfo.Attribute>

The various attributes that a field can have. Any field may specify any combination of these attributes. If a field has the SAVED attribute, then it should also have a type specified.


Enum Constant Summary
CASE_SENSITIVE
           
INDEXED
           
SAVED
           
TOKENIZED
           
TRIMMED
           
VECTORED
           
 
Method Summary
static FieldInfo.Attribute valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FieldInfo.Attribute[] 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

TOKENIZED

public static final FieldInfo.Attribute TOKENIZED

INDEXED

public static final FieldInfo.Attribute INDEXED

VECTORED

public static final FieldInfo.Attribute VECTORED

SAVED

public static final FieldInfo.Attribute SAVED

TRIMMED

public static final FieldInfo.Attribute TRIMMED

CASE_SENSITIVE

public static final FieldInfo.Attribute CASE_SENSITIVE
Method Detail

values

public static FieldInfo.Attribute[] 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 (FieldInfo.Attribute c : FieldInfo.Attribute.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static FieldInfo.Attribute 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