public enum EnumCM_PatientEyeMovementCommand extends java.lang.Enum<EnumCM_PatientEyeMovementCommand>
| Enum Constant and Description |
|---|
CONVERGENT_GAZE |
DOWNGAZE |
LEFT_DOWNGAZE |
LEFT_GAZE |
LEFT_UPGAZE |
PRIMARY_GAZE |
RIGHT_DOWNGAZE |
RIGHT_GAZE |
RIGHT_UPGAZE |
UPWARD_GAZE |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_PatientEyeMovementCommand |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_PatientEyeMovementCommand[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_PatientEyeMovementCommand PRIMARY_GAZE
public static final EnumCM_PatientEyeMovementCommand UPWARD_GAZE
public static final EnumCM_PatientEyeMovementCommand LEFT_UPGAZE
public static final EnumCM_PatientEyeMovementCommand LEFT_GAZE
public static final EnumCM_PatientEyeMovementCommand LEFT_DOWNGAZE
public static final EnumCM_PatientEyeMovementCommand DOWNGAZE
public static final EnumCM_PatientEyeMovementCommand RIGHT_DOWNGAZE
public static final EnumCM_PatientEyeMovementCommand RIGHT_GAZE
public static final EnumCM_PatientEyeMovementCommand RIGHT_UPGAZE
public static final EnumCM_PatientEyeMovementCommand CONVERGENT_GAZE
public static EnumCM_PatientEyeMovementCommand[] values()
for (EnumCM_PatientEyeMovementCommand c : EnumCM_PatientEyeMovementCommand.values()) System.out.println(c);
public static EnumCM_PatientEyeMovementCommand 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 java.lang.String getValue()