public enum JsfMessage extends Enum<JsfMessage>
Enum Constant and Description |
---|
CLEANING_UP_CONVERSATION |
FOUND_CONVERSATION_FROM_REQUEST |
IMPROPER_ENVIRONMENT |
INITIATING_CONVERSATION |
RESUMING_CONVERSATION |
SKIPPING_CLEANING_UP_CONVERSATION |
Modifier and Type | Method and Description |
---|---|
static JsfMessage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsfMessage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsfMessage CLEANING_UP_CONVERSATION
public static final JsfMessage SKIPPING_CLEANING_UP_CONVERSATION
public static final JsfMessage INITIATING_CONVERSATION
public static final JsfMessage FOUND_CONVERSATION_FROM_REQUEST
public static final JsfMessage RESUMING_CONVERSATION
public static final JsfMessage IMPROPER_ENVIRONMENT
public static JsfMessage[] values()
for (JsfMessage c : JsfMessage.values()) System.out.println(c);
public static JsfMessage valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2013 Seam Framework. All rights reserved.