public enum PropagationMode extends Enum<PropagationMode>
| Enum Constant and Description |
|---|
ONE_PHASE |
TWO_PHASES |
| Modifier and Type | Method and Description |
|---|---|
static PropagationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropagationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropagationMode ONE_PHASE
public static final PropagationMode TWO_PHASES
public static PropagationMode[] values()
for (PropagationMode c : PropagationMode.values()) System.out.println(c);
public static PropagationMode 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 © 2010–2018 The Apache Software Foundation. All rights reserved.