org.apache.oozie.store
Enum OozieSchema.OozieIndex

java.lang.Object
  extended by java.lang.Enum<OozieSchema.OozieIndex>
      extended by org.apache.oozie.store.OozieSchema.OozieIndex
All Implemented Interfaces:
Serializable, Comparable<OozieSchema.OozieIndex>, Schema.Index
Enclosing class:
OozieSchema

public static enum OozieSchema.OozieIndex
extends Enum<OozieSchema.OozieIndex>
implements Schema.Index


Enum Constant Summary
IDX_ACTIONS_BEGINTIME
           
IDX_ACTIONS_WFID
           
IDX_WF_APPNAME
           
IDX_WF_EXTERNAL_ID
           
IDX_WF_GROUP
           
IDX_WF_STATUS
           
IDX_WF_USER
           
 
Method Summary
 Schema.Column column()
          Column that is to be indexed
static OozieSchema.OozieIndex valueOf(String name)
          Returns the enum constant of this type with the specified name.
static OozieSchema.OozieIndex[] 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

IDX_WF_APPNAME

public static final OozieSchema.OozieIndex IDX_WF_APPNAME

IDX_WF_USER

public static final OozieSchema.OozieIndex IDX_WF_USER

IDX_WF_GROUP

public static final OozieSchema.OozieIndex IDX_WF_GROUP

IDX_WF_STATUS

public static final OozieSchema.OozieIndex IDX_WF_STATUS

IDX_WF_EXTERNAL_ID

public static final OozieSchema.OozieIndex IDX_WF_EXTERNAL_ID

IDX_ACTIONS_BEGINTIME

public static final OozieSchema.OozieIndex IDX_ACTIONS_BEGINTIME

IDX_ACTIONS_WFID

public static final OozieSchema.OozieIndex IDX_ACTIONS_WFID
Method Detail

values

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

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

valueOf

public static OozieSchema.OozieIndex 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

column

public Schema.Column column()
Description copied from interface: Schema.Index
Column that is to be indexed

Specified by:
column in interface Schema.Index
Returns:


Copyright © 2013 Apache Software Foundation. All Rights Reserved.