org.jboss.seam.core
public enum PropagationType extends Enum<PropagationType>
Enum Constant and Description |
---|
BEGIN |
DEFAULT |
END |
ENDROOT |
JOIN |
NESTED |
NONE |
Modifier and Type | Method and Description |
---|---|
static PropagationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropagationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropagationType DEFAULT
public static final PropagationType BEGIN
public static final PropagationType JOIN
public static final PropagationType NESTED
public static final PropagationType NONE
public static final PropagationType END
public static final PropagationType ENDROOT
public static PropagationType[] values()
for (PropagationType c : PropagationType.values()) System.out.println(c);
public static PropagationType 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 © 2015 Seam Framework. All Rights Reserved.