public static enum RecurringPayment.Status extends Enum<RecurringPayment.Status>
| Enum Constant and Description |
|---|
ACTIVE |
CANCELED |
COMPLETED |
NEW |
PAUSED |
| Modifier and Type | Method and Description |
|---|---|
static RecurringPayment.Status |
create(String val) |
String |
toString() |
static RecurringPayment.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecurringPayment.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecurringPayment.Status NEW
public static final RecurringPayment.Status ACTIVE
public static final RecurringPayment.Status PAUSED
public static final RecurringPayment.Status CANCELED
public static final RecurringPayment.Status COMPLETED
public static RecurringPayment.Status[] values()
for (RecurringPayment.Status c : RecurringPayment.Status.values()) System.out.println(c);
public static RecurringPayment.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 nullpublic String toString()
toString in class Enum<RecurringPayment.Status>public static RecurringPayment.Status create(String val)
Copyright © 2014. All rights reserved.