public enum State extends Enum<State>
Package| Enum Constant and Description |
|---|
AWAITING_UPLOAD
The awaiting upload state
|
COPYING
The copying state
|
EXPIRED
The expired state
|
FAILED
The failed state
|
PROCESSING_UPLOAD
The processing upload state
|
READY
The ready state
|
| Modifier and Type | Method and Description |
|---|---|
static State |
from(String s) |
String |
getValue() |
String |
toString() |
static State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final State AWAITING_UPLOAD
public static final State COPYING
public static final State EXPIRED
public static final State FAILED
public static final State PROCESSING_UPLOAD
public static final State READY
public static State[] values()
for (State c : State.values()) System.out.println(c);
public static State 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 String getValue()
Copyright © 2017 Pivotal Software, Inc.. All rights reserved.