public static enum Button.Repeat extends Enum<Button.Repeat>
| Enum Constant and Description |
|---|
BIWEEKLY |
DAILY |
MONTHLY |
NEVER |
QUARTERLY |
WEEKLY |
YEARLY |
| Modifier and Type | Method and Description |
|---|---|
static Button.Repeat |
create(String val) |
String |
toString() |
static Button.Repeat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Button.Repeat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Button.Repeat NEVER
public static final Button.Repeat DAILY
public static final Button.Repeat WEEKLY
public static final Button.Repeat BIWEEKLY
public static final Button.Repeat MONTHLY
public static final Button.Repeat QUARTERLY
public static final Button.Repeat YEARLY
public static Button.Repeat[] values()
for (Button.Repeat c : Button.Repeat.values()) System.out.println(c);
public static Button.Repeat 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<Button.Repeat>public static Button.Repeat create(String val)
Copyright © 2014. All rights reserved.