public static enum IngestStatus.Result extends Enum<IngestStatus.Result>
| Enum Constant and Description | 
|---|
| FAILURE | 
| PRECONDS_FAILED | 
| SKIPPED | 
| SUCCESS | 
| Modifier and Type | Method and Description | 
|---|---|
| static IngestStatus.Result | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static IngestStatus.Result[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final IngestStatus.Result SUCCESS
public static final IngestStatus.Result FAILURE
public static final IngestStatus.Result SKIPPED
public static final IngestStatus.Result PRECONDS_FAILED
public static IngestStatus.Result[] values()
for (IngestStatus.Result c : IngestStatus.Result.values()) System.out.println(c);
public static IngestStatus.Result 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 © 1999–2017 Apache OODT. All rights reserved.