public static enum Trigger.Recurring extends Enum<Trigger.Recurring>
| Modifier and Type | Method and Description |
|---|---|
static Trigger.Recurring |
forValue(String value)
Generate a Recurring from a string.
|
String |
toString() |
static Trigger.Recurring |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Trigger.Recurring[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Trigger.Recurring DAILY
public static final Trigger.Recurring MONTHLY
public static final Trigger.Recurring YEARLY
public static final Trigger.Recurring ALLTIME
public static Trigger.Recurring[] values()
for (Trigger.Recurring c : Trigger.Recurring.values()) System.out.println(c);
public static Trigger.Recurring 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<Trigger.Recurring>public static Trigger.Recurring forValue(String value)
value - string valueCopyright © 2011 Twilio, Inc. All Rights Reserved.