protected static enum AbstractUndoLogManager.State extends Enum<AbstractUndoLogManager.State>
| Enum Constant and Description |
|---|
GlobalFinished
This state prevents the branch transaction from inserting undo_log after the global transaction is rolled
back.
|
Normal
This state can be properly rolled back by services
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static AbstractUndoLogManager.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractUndoLogManager.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractUndoLogManager.State Normal
public static final AbstractUndoLogManager.State GlobalFinished
public static AbstractUndoLogManager.State[] values()
for (AbstractUndoLogManager.State c : AbstractUndoLogManager.State.values()) System.out.println(c);
public static AbstractUndoLogManager.State 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 nullpublic int getValue()
Copyright © 2024 Apache. All rights reserved.