public static enum Appointment.Reminder extends Enum<Appointment.Reminder>
Modifier and Type | Method and Description |
---|---|
static Appointment.Reminder |
get(int type) |
static Appointment.Reminder |
get(Integer type) |
static Appointment.Reminder |
get(Long type) |
int |
getId() |
static Appointment.Reminder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Appointment.Reminder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Appointment.Reminder none
public static final Appointment.Reminder email
public static final Appointment.Reminder ical
public static Appointment.Reminder[] values()
for (Appointment.Reminder c : Appointment.Reminder.values()) System.out.println(c);
public static Appointment.Reminder 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 int getId()
public static Appointment.Reminder get(Long type)
public static Appointment.Reminder get(Integer type)
public static Appointment.Reminder get(int type)
Copyright © 2012–2016 Apache Software Foundation. All rights reserved.