public enum AggregationState extends Enum<AggregationState>
| Enum Constant and Description |
|---|
ADDED
Aggregated Records has been saved on DB and the backup file has been deleted
|
AGGREGATED
Original Records were aggregated.
|
COMPLETED
The backup file of Original Records has been saved on Workspace and the local file has been deleted
|
DELETED
Original Records has been deleted from DB.
|
STARTED
The Aggregation has been started
|
| Modifier and Type | Method and Description |
|---|---|
static boolean |
canContinue(AggregationState effective,
AggregationState desired) |
static AggregationState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggregationState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregationState STARTED
public static final AggregationState AGGREGATED
public static final AggregationState DELETED
public static final AggregationState ADDED
public static final AggregationState COMPLETED
public static AggregationState[] values()
for (AggregationState c : AggregationState.values()) System.out.println(c);
public static AggregationState 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 static boolean canContinue(AggregationState effective, AggregationState desired) throws Exception
ExceptionCopyright © 2018. All Rights Reserved.