com.endeca.b2creference.services.query
Enum QueryProcessor.PostProcessStatus

java.lang.Object
  extended by java.lang.Enum<QueryProcessor.PostProcessStatus>
      extended by com.endeca.b2creference.services.query.QueryProcessor.PostProcessStatus
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<QueryProcessor.PostProcessStatus>
Enclosing interface:
QueryProcessor

public static enum QueryProcessor.PostProcessStatus
extends java.lang.Enum<QueryProcessor.PostProcessStatus>


Enum Constant Summary
CONTINUE_PROCESSING
           
REQUERY
           
STOP_PROCESSING
           
 
Method Summary
static QueryProcessor.PostProcessStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static QueryProcessor.PostProcessStatus[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CONTINUE_PROCESSING

public static final QueryProcessor.PostProcessStatus CONTINUE_PROCESSING

STOP_PROCESSING

public static final QueryProcessor.PostProcessStatus STOP_PROCESSING

REQUERY

public static final QueryProcessor.PostProcessStatus REQUERY
Method Detail

values

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

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

valueOf

public static QueryProcessor.PostProcessStatus 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