public enum EAppointmentActionType extends Enum<EAppointmentActionType>
Enum Constant and Description |
---|
BOOK
Create (book) a new appointment
|
CANCEL
Cancels an existing appointment.
|
MOVE
Update (move) an existing appointment.
|
NONE
Do no take any action, e.g. a no-op.
|
VALIDATE
Appointment is unchanged and persisted.
|
Modifier and Type | Method and Description |
---|---|
static EAppointmentActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EAppointmentActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EAppointmentActionType BOOK
public static final EAppointmentActionType CANCEL
public static final EAppointmentActionType MOVE
public static final EAppointmentActionType NONE
public static final EAppointmentActionType VALIDATE
public static EAppointmentActionType[] values()
for (EAppointmentActionType c : EAppointmentActionType.values()) System.out.println(c);
public static EAppointmentActionType 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 © 2021 XIMA MEDIA GmbH. All rights reserved.