mondrian.xmla
Enum XmlaServlet.Phase

java.lang.Object
  extended by java.lang.Enum<XmlaServlet.Phase>
      extended by mondrian.xmla.XmlaServlet.Phase
All Implemented Interfaces:
Serializable, Comparable<XmlaServlet.Phase>
Enclosing class:
XmlaServlet

public static enum XmlaServlet.Phase
extends Enum<XmlaServlet.Phase>

 

Enum Constant Summary
CALLBACK_POST_ACTION
           
CALLBACK_PRE_ACTION
           
INITIAL_PARSE
           
PROCESS_BODY
           
PROCESS_HEADER
           
SEND_ERROR
           
SEND_RESPONSE
           
VALIDATE_HTTP_HEAD
           
 
Method Summary
static XmlaServlet.Phase valueOf(String name)
          Returns the enum constant of this type with the specified name.
static XmlaServlet.Phase[] 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

VALIDATE_HTTP_HEAD

public static final XmlaServlet.Phase VALIDATE_HTTP_HEAD

INITIAL_PARSE

public static final XmlaServlet.Phase INITIAL_PARSE

CALLBACK_PRE_ACTION

public static final XmlaServlet.Phase CALLBACK_PRE_ACTION

PROCESS_HEADER

public static final XmlaServlet.Phase PROCESS_HEADER

PROCESS_BODY

public static final XmlaServlet.Phase PROCESS_BODY

CALLBACK_POST_ACTION

public static final XmlaServlet.Phase CALLBACK_POST_ACTION

SEND_RESPONSE

public static final XmlaServlet.Phase SEND_RESPONSE

SEND_ERROR

public static final XmlaServlet.Phase SEND_ERROR
Method Detail

values

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

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

valueOf

public static XmlaServlet.Phase 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.)

Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null
Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name

SourceForge.net_Logo