public static enum Event.ResourceType extends java.lang.Enum<Event.ResourceType>
Enum Constant and Description |
---|
MANDATES |
PAYMENTS |
PAYOUTS |
REFUNDS |
SUBSCRIPTIONS |
Modifier and Type | Method and Description |
---|---|
static Event.ResourceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Event.ResourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="payments") public static final Event.ResourceType PAYMENTS
@SerializedName(value="mandates") public static final Event.ResourceType MANDATES
@SerializedName(value="payouts") public static final Event.ResourceType PAYOUTS
@SerializedName(value="refunds") public static final Event.ResourceType REFUNDS
@SerializedName(value="subscriptions") public static final Event.ResourceType SUBSCRIPTIONS
public static Event.ResourceType[] values()
for (Event.ResourceType c : Event.ResourceType.values()) System.out.println(c);
public static Event.ResourceType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null