public enum ProcessingOutcomeType extends Enum<ProcessingOutcomeType>
| Enum Constant and Description |
|---|
collectionId |
language |
query |
| Modifier and Type | Method and Description |
|---|---|
static ProcessingOutcomeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessingOutcomeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessingOutcomeType query
public static final ProcessingOutcomeType collectionId
public static final ProcessingOutcomeType language
public static ProcessingOutcomeType[] values()
for (ProcessingOutcomeType c : ProcessingOutcomeType.values()) System.out.println(c);
public static ProcessingOutcomeType 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 © 2014. All Rights Reserved.