public static enum GCUBEParallelHandler.Mode extends Enum<GCUBEParallelHandler.Mode>
GCUBEParallelHandler.
In STRICT the handler fails as soon one of its component handlers does.
GCUBEComplexHandler.undo() is then invoked on all component handlers
when all of them have terminated. In LAX, the handler logs the
failures but executes until all component handlers have completed theirs (successfully or not).| Modifier and Type | Method and Description |
|---|---|
static GCUBEParallelHandler.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GCUBEParallelHandler.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GCUBEParallelHandler.Mode STRICT
public static final GCUBEParallelHandler.Mode LAX
public static GCUBEParallelHandler.Mode[] values()
for (GCUBEParallelHandler.Mode c : GCUBEParallelHandler.Mode.values()) System.out.println(c);
public static GCUBEParallelHandler.Mode 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. All Rights Reserved.