Enum ActionType
- java.lang.Object
-
- java.lang.Enum<ActionType>
-
- com.aspectran.core.context.rule.type.ActionType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ActionType>
public enum ActionType extends java.lang.Enum<ActionType>
Supported Action types.Created: 2008. 03. 26 AM 12:58:38
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ActionTyperesolve(java.lang.String alias)Returns anActionTypewith a value represented by the specifiedString.java.lang.StringtoString()static ActionTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ActionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HEADER
public static final ActionType HEADER
-
ECHO
public static final ActionType ECHO
-
ACTION
public static final ActionType ACTION
-
ACTION_ANNOTATED
public static final ActionType ACTION_ANNOTATED
-
INCLUDE
public static final ActionType INCLUDE
-
CHOOSE
public static final ActionType CHOOSE
-
-
Method Detail
-
values
public static ActionType[] 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 (ActionType c : ActionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ActionType 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 namejava.lang.NullPointerException- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<ActionType>
-
resolve
public static ActionType resolve(java.lang.String alias)
Returns anActionTypewith a value represented by the specifiedString.- Parameters:
alias- the action type as aString- Returns:
- an
ActionType, may benull
-
-