Serializable, Comparable<RecurringTokenInterval>public enum RecurringTokenInterval extends Enum<RecurringTokenInterval>
| Modifier and Type | Method | Description |
|---|---|---|
static RecurringTokenInterval |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static RecurringTokenInterval[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName("daily")
public static final RecurringTokenInterval DAILY
@SerializedName("weekly")
public static final RecurringTokenInterval WEEKLY
@SerializedName("monthly")
public static final RecurringTokenInterval MONTHLY
@SerializedName("annually")
public static final RecurringTokenInterval ANNUALLY
public static RecurringTokenInterval[] values()
for (RecurringTokenInterval c : RecurringTokenInterval.values()) System.out.println(c);
public static RecurringTokenInterval 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.