public static enum Document.ProcessingState extends Enum<Document.ProcessingState>
| Enum Constant and Description |
|---|
NEEDS_SYSTEM_PROCESSING |
NEEDS_USER_PROCESSING |
PROCESSED |
| Modifier and Type | Method and Description |
|---|---|
static Document.ProcessingState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Document.ProcessingState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Document.ProcessingState PROCESSED
public static final Document.ProcessingState NEEDS_USER_PROCESSING
public static final Document.ProcessingState NEEDS_SYSTEM_PROCESSING
public static Document.ProcessingState[] values()
for (Document.ProcessingState c : Document.ProcessingState.values()) System.out.println(c);
public static Document.ProcessingState 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.