public static enum Reminder.Type extends java.lang.Enum<Reminder.Type>
| Enum Constant and Description |
|---|
NOTE |
TRANSACTION |
| Modifier and Type | Method and Description |
|---|---|
int |
code() |
static Reminder.Type |
typeForCode(int typeCode) |
static Reminder.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Reminder.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Reminder.Type TRANSACTION
public static final Reminder.Type NOTE
public static Reminder.Type[] values()
for (Reminder.Type c : Reminder.Type.values()) System.out.println(c);
public static Reminder.Type valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int code()
public static Reminder.Type typeForCode(int typeCode)