public static enum CustomerRequestQuery.REQUEST_STATUS extends Enum<CustomerRequestQuery.REQUEST_STATUS>
| Enum Constant and Description |
|---|
ALL_REQUESTS |
CLOSED_REQUESTS |
OPEN_REQUESTS |
| Modifier and Type | Method and Description |
|---|---|
static CustomerRequestQuery.REQUEST_STATUS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CustomerRequestQuery.REQUEST_STATUS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomerRequestQuery.REQUEST_STATUS OPEN_REQUESTS
public static final CustomerRequestQuery.REQUEST_STATUS CLOSED_REQUESTS
public static final CustomerRequestQuery.REQUEST_STATUS ALL_REQUESTS
public static CustomerRequestQuery.REQUEST_STATUS[] values()
for (CustomerRequestQuery.REQUEST_STATUS c : CustomerRequestQuery.REQUEST_STATUS.values()) System.out.println(c);
public static CustomerRequestQuery.REQUEST_STATUS 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 © 2017 Atlassian. All rights reserved.