public enum EventVerb extends Enum<EventVerb>
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static EventVerb |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventVerb[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventVerb CREATE
public static final EventVerb DESTROY
public static final EventVerb PUBLISHED
public static final EventVerb UNPUBLISHED
public static final EventVerb UPDATE
public static final EventVerb AUTHORIZATION_FAILURE
public static final EventVerb AUTHORIZATION_PENDING
public static final EventVerb AUTHORIZATION_SUCCESS
public static final EventVerb CANCELLED
public static final EventVerb CAPTURE_FAILURE
public static final EventVerb CAPTURE_PENDING
public static final EventVerb CAPTURE_SUCCESS
public static final EventVerb CLOSED
public static final EventVerb CONFIRMED
public static final EventVerb FULFILLMENT_CANCELLED
public static final EventVerb FULFILLMENT_PENDING
public static final EventVerb FULFILLMENT_SUCCESS
public static final EventVerb MAIL_SENT
public static final EventVerb PLACED
public static final EventVerb RE_OPENED
public static final EventVerb REFUND_FAILURE
public static final EventVerb REFUND_PENDING
public static final EventVerb REFUND_SUCCESS
public static final EventVerb RESTOCK_LINE_ITEMS
public static final EventVerb SALE_FAILURE
public static final EventVerb SALE_PENDING
public static final EventVerb SALE_SUCCESS
public static final EventVerb VOID_FAILURE
public static final EventVerb VOID_PENDING
public static final EventVerb VOID_SUCCESS
public static EventVerb[] values()
for (EventVerb c : EventVerb.values()) System.out.println(c);
public static EventVerb 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 (c) 2006-2024 North Concepts Inc. All Rights Reserved.