Serializable, Comparable<PaymentSystemEvent>public enum PaymentSystemEvent extends Enum<PaymentSystemEvent>
| Enum Constant | Description |
|---|---|
CANCEL_FINISHED |
|
CHARGE_FINISHED |
|
CHARGE_UPDATED |
|
REFUND_FINISHED |
|
SUBSCRIPTION_CANCELED |
|
SUBSCRIPTION_COMPLETED |
|
SUBSCRIPTION_FAILURE |
|
SUBSCRIPTION_PAYMENT |
|
SUBSCRIPTION_SUSPENDED |
|
TRANSFER_FINALIZED |
| Modifier and Type | Method | Description |
|---|---|---|
static PaymentSystemEvent |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static PaymentSystemEvent[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName("charge_updated")
public static final PaymentSystemEvent CHARGE_UPDATED
@SerializedName("charge_finished")
public static final PaymentSystemEvent CHARGE_FINISHED
@SerializedName("subscription_payment")
public static final PaymentSystemEvent SUBSCRIPTION_PAYMENT
@SerializedName("subscription_completed")
public static final PaymentSystemEvent SUBSCRIPTION_COMPLETED
@SerializedName("subscription_failure")
public static final PaymentSystemEvent SUBSCRIPTION_FAILURE
@SerializedName("subscription_canceled")
public static final PaymentSystemEvent SUBSCRIPTION_CANCELED
@SerializedName("subscription_suspended")
public static final PaymentSystemEvent SUBSCRIPTION_SUSPENDED
@SerializedName("refund_finished")
public static final PaymentSystemEvent REFUND_FINISHED
@SerializedName("transfer_finalized")
public static final PaymentSystemEvent TRANSFER_FINALIZED
@SerializedName("cancel_finished")
public static final PaymentSystemEvent CANCEL_FINISHED
public static PaymentSystemEvent[] values()
for (PaymentSystemEvent c : PaymentSystemEvent.values()) System.out.println(c);
public static PaymentSystemEvent 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 © 2018 The Apache Software Foundation. All rights reserved.