public enum XaRollbackOutcome extends Enum<XaRollbackOutcome>
Enum Constant and Description |
---|
EXCEPTION
The exception.
|
ROLLEDBACK
The rolledback.
|
Modifier and Type | Method and Description |
---|---|
static XaRollbackOutcome |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XaRollbackOutcome[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XaRollbackOutcome EXCEPTION
public static final XaRollbackOutcome ROLLEDBACK
public static XaRollbackOutcome[] values()
for (XaRollbackOutcome c : XaRollbackOutcome.values()) System.out.println(c);
public static XaRollbackOutcome 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.