public enum EnumSetupTechnique extends java.lang.Enum<EnumSetupTechnique>
| Enum Constant and Description |
|---|
BREAST_BRIDGE
The BREAS t_ bridge.
|
FIXED_SSD
The FIXE d_ ssd.
|
ISOCENTRIC
The ISOCENTRIC.
|
SKIN_APPOSITION
The SKI n_ apposition.
|
TBI
The TBI.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumSetupTechnique |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumSetupTechnique[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumSetupTechnique ISOCENTRIC
public static final EnumSetupTechnique FIXED_SSD
public static final EnumSetupTechnique TBI
public static final EnumSetupTechnique BREAST_BRIDGE
public static final EnumSetupTechnique SKIN_APPOSITION
public static EnumSetupTechnique[] values()
for (EnumSetupTechnique c : EnumSetupTechnique.values()) System.out.println(c);
public static EnumSetupTechnique 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()