public enum EnumPatientEventType extends java.lang.Enum<EnumPatientEventType> implements IEventTypeID
| Enum Constant and Description |
|---|
PatientCreated
int value representing Patient Created
|
PatientDeleted
int value representing Patient Deleted
|
PatientUpdated
int value representing Patient Updated
|
| Modifier and Type | Method and Description |
|---|---|
short |
getValue()
This function returns the String value of DataSink Type.
|
static EnumPatientEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumPatientEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumPatientEventType PatientCreated
public static final EnumPatientEventType PatientDeleted
public static final EnumPatientEventType PatientUpdated
public static EnumPatientEventType[] values()
for (EnumPatientEventType c : EnumPatientEventType.values()) System.out.println(c);
public static EnumPatientEventType 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 short getValue()
getValue in interface IEventTypeID