public enum AcquisitionEndState extends Enum<AcquisitionEndState>
PipelineComponentRuntime| Enum Constant and Description |
|---|
FAILURE
Indicates the acquisition has failed.
|
FULL_ACQUISITION_RECOVERY_REQUIRED
Indicates the acquisition has failed in a way that requires
a full acquisition the next time the acquistion runs.
|
SUCCESS
Indicates the acquisition has completed successfully.
|
| Modifier and Type | Method and Description |
|---|---|
static AcquisitionEndState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AcquisitionEndState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AcquisitionEndState SUCCESS
public static final AcquisitionEndState FAILURE
public static final AcquisitionEndState FULL_ACQUISITION_RECOVERY_REQUIRED
IncrementalDataSourceRuntime cannot
rollback any state changes after an incremental acquisition.public static AcquisitionEndState[] values()
for (AcquisitionEndState c : AcquisitionEndState.values()) System.out.println(c);
public static AcquisitionEndState 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 © 2007, 2017, Oracle and/or its affiliates. All rights reserved.