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