public enum TroubleTicketState extends Enum<TroubleTicketState>
Enum Constant and Description |
---|
CANCEL_FAILED |
CANCEL_PENDING |
CANCELLED |
CLOSE_FAILED |
CLOSE_PENDING |
CLOSED |
CREATE_FAILED |
CREATE_PENDING |
OPEN |
RESOLVE_FAILED |
RESOLVE_PENDING |
RESOLVED |
UPDATE_FAILED |
UPDATE_PENDING |
Modifier and Type | Method and Description |
---|---|
static TroubleTicketState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TroubleTicketState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TroubleTicketState OPEN
public static final TroubleTicketState CREATE_PENDING
public static final TroubleTicketState CREATE_FAILED
public static final TroubleTicketState UPDATE_PENDING
public static final TroubleTicketState UPDATE_FAILED
public static final TroubleTicketState CLOSED
public static final TroubleTicketState CLOSE_PENDING
public static final TroubleTicketState CLOSE_FAILED
public static final TroubleTicketState RESOLVED
public static final TroubleTicketState RESOLVE_PENDING
public static final TroubleTicketState RESOLVE_FAILED
public static final TroubleTicketState CANCELLED
public static final TroubleTicketState CANCEL_PENDING
public static final TroubleTicketState CANCEL_FAILED
public static TroubleTicketState[] values()
for (TroubleTicketState c : TroubleTicketState.values()) System.out.println(c);
public static TroubleTicketState 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. All rights reserved.