public static enum Request.RequestStatus extends Enum<Request.RequestStatus>
| Enum Constant and Description |
|---|
Cancelled |
Completed |
Errored |
Opened |
TimedOut |
| Modifier and Type | Method and Description |
|---|---|
static Request.RequestStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Request.RequestStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Request.RequestStatus Opened
public static final Request.RequestStatus Cancelled
public static final Request.RequestStatus Completed
public static final Request.RequestStatus Errored
public static final Request.RequestStatus TimedOut
public static Request.RequestStatus[] values()
for (Request.RequestStatus c : Request.RequestStatus.values()) System.out.println(c);
public static Request.RequestStatus 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 2004-2021 Solace Corporation. All rights reserved.