public static enum CheckPointState.State extends Enum<CheckPointState.State>
| Enum Constant and Description | 
|---|
COMMITTED
The checkpoint spout has committed the transaction. 
 | 
COMMITTING
The checkpoint spout has started committing the transaction
 and the commit is in progress. 
 | 
PREPARING
The checkpoint spout has started preparing the transaction for commit
 and the prepare is in progress. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static CheckPointState.State | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static CheckPointState.State[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final CheckPointState.State COMMITTED
public static final CheckPointState.State COMMITTING
public static final CheckPointState.State PREPARING
public static CheckPointState.State[] values()
for (CheckPointState.State c : CheckPointState.State.values()) System.out.println(c);
public static CheckPointState.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 nullCopyright © 2022 The Apache Software Foundation. All Rights Reserved.