public enum EnumViewPosition extends java.lang.Enum<EnumViewPosition>
| Enum Constant and Description |
|---|
ANTERIORPOSTERIOR
The ANTERIORPOSTERIOR.
|
LEFTLATERAL
The LEFTLATERAL.
|
LEFTLATERALDECUBITUS
The LEFTLATERALDECUBITUS.
|
LEFTLATERALOBLIQUE
The LEFTLATERALOBLIQUE.
|
POSTERIORANTERIOR
The POSTERIORANTERIOR.
|
RIGHTLATERAL
The RIGHTLATERAL.
|
RIGHTLATERALDECUBITUS
The RIGHTLATERALDECUBITUS.
|
RIGHTLATERALOBLIQUE
The RIGHTLATERALOBLIQUE.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the value of this enum.
|
static EnumViewPosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumViewPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumViewPosition ANTERIORPOSTERIOR
public static final EnumViewPosition POSTERIORANTERIOR
public static final EnumViewPosition LEFTLATERAL
public static final EnumViewPosition RIGHTLATERAL
public static final EnumViewPosition RIGHTLATERALDECUBITUS
public static final EnumViewPosition LEFTLATERALDECUBITUS
public static final EnumViewPosition RIGHTLATERALOBLIQUE
public static final EnumViewPosition LEFTLATERALOBLIQUE
public static EnumViewPosition[] values()
for (EnumViewPosition c : EnumViewPosition.values()) System.out.println(c);
public static EnumViewPosition 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()