public enum UpdateRequestStatus extends Enum<UpdateRequestStatus>
| Enum Constant and Description |
|---|
CANCELED
The request was canceled.
|
COMPLETE
Represents COMPLETE status.
|
PENDING
Represents PENDING status.
|
| Modifier and Type | Method and Description |
|---|---|
static UpdateRequestStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UpdateRequestStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpdateRequestStatus PENDING
public static final UpdateRequestStatus CANCELED
public static final UpdateRequestStatus COMPLETE
public static UpdateRequestStatus[] values()
for (UpdateRequestStatus c : UpdateRequestStatus.values()) System.out.println(c);
public static UpdateRequestStatus 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–2019 Smartsheet. All rights reserved.