mondrian.xmla
Enum XmlaServlet.Phase
java.lang.Object
java.lang.Enum<XmlaServlet.Phase>
mondrian.xmla.XmlaServlet.Phase
- All Implemented Interfaces:
- Serializable, Comparable<XmlaServlet.Phase>
- Enclosing class:
- XmlaServlet
public static enum XmlaServlet.Phase
- extends Enum<XmlaServlet.Phase>
-
-
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
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