Package 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>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CALLBACK_POST_ACTION
CALLBACK_PRE_ACTION
INITIAL_PARSE
PROCESS_BODY
PROCESS_HEADER
SEND_ERROR
SEND_RESPONSE
VALIDATE_HTTP_HEAD
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description 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.
-
-
-
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.)- 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 nameNullPointerException
- if the argument is null
-
-