public enum XaCommitOutcome extends Enum<XaCommitOutcome>
Enum Constant and Description |
---|
COMMITTED
committed.
|
EXCEPTION
exception.
|
READ_ONLY
read only.
|
Modifier and Type | Method and Description |
---|---|
static XaCommitOutcome |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XaCommitOutcome[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XaCommitOutcome READ_ONLY
public static final XaCommitOutcome EXCEPTION
public static final XaCommitOutcome COMMITTED
public static XaCommitOutcome[] values()
for (XaCommitOutcome c : XaCommitOutcome.values()) System.out.println(c);
public static XaCommitOutcome 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 © 2003–2016 Terracotta, Inc.. All rights reserved.