public enum ConversationPropagation extends Enum<ConversationPropagation> implements IConversationPropagation
ConversationScoped| Enum Constant and Description |
|---|
ALL
Persistent conversations are propagated between bookmarkable and
non-bookmarkable pages
|
NONBOOKMARKABLE
Pesistent conversations are propagated between non-bookmarkable pages
only
|
NONE
No conversational propagation takes place
|
| Modifier and Type | Method and Description |
|---|---|
static ConversationPropagation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConversationPropagation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfpropagatesViapublic static final ConversationPropagation NONE
public static final ConversationPropagation NONBOOKMARKABLE
public static final ConversationPropagation ALL
public static ConversationPropagation[] values()
for (ConversationPropagation c : ConversationPropagation.values()) System.out.println(c);
public static ConversationPropagation 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 © 2006–2014 Apache Software Foundation. All rights reserved.