Enum Class ExitActionType
- All Implemented Interfaces:
Serializable,Comparable<ExitActionType>,Constable
Enum representing the exitActionType simple type.
The following schema snippet defines the possible values:
<xs:simpleType name="exitActionType">
<xs:restriction base="xs:string">
<xs:enumeration value="exit,no confirmation" />
<xs:enumeration value="exit,confirmation" />
<xs:enumeration value="continue" />
<xs:enumeration value="message page" />
<xs:enumeration value="do nothing" />
</xs:restriction>
</xs:simpleType>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe exit action is to continue.The exit action is to do nothing.The exit action is to exit with confirmation.The exit action is to exit without confirmation.The exit action is to display a message page. -
Method Summary
Modifier and TypeMethodDescriptionstatic ExitActionTypeReturns the enum constant of this class with the specified name.static ExitActionType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EXIT_NO_CONFIRMATION
The exit action is to exit without confirmation. -
EXIT_CONFIRMATION
The exit action is to exit with confirmation. -
CONTINUE
The exit action is to continue. -
MESSAGE_PAGE
The exit action is to display a message page. -
DO_NOTHING
The exit action is to do nothing.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-