public enum EnumApplicatorType extends java.lang.Enum<EnumApplicatorType>
| Enum Constant and Description |
|---|
ELECTRON_CIRCULAR
The ELECTRO n_ circular.
|
ELECTRON_OPEN
The ELECTRO n_ open.
|
ELECTRON_RECTANGULAR
The ELECTRO n_ rectangular.
|
ELECTRON_SHORT
The ELECTRO n_ short.
|
ELECTRON_SQUARE
The ELECTRO n_ square.
|
INTRAOPERATIVE
The INTRAOPERATIVE.
|
PHOTON_CIRCULAR
The photon circular.
|
PHOTON_RECTANGULAR
The photon rectangular.
|
PHOTON_SQUARE
The photon square.
|
STEREOTACTIC
The STEREOTACTIC.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
Returns the String value of this enum.
|
static EnumApplicatorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumApplicatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumApplicatorType ELECTRON_SQUARE
public static final EnumApplicatorType ELECTRON_RECTANGULAR
public static final EnumApplicatorType ELECTRON_CIRCULAR
public static final EnumApplicatorType ELECTRON_SHORT
public static final EnumApplicatorType ELECTRON_OPEN
public static final EnumApplicatorType PHOTON_SQUARE
public static final EnumApplicatorType PHOTON_RECTANGULAR
public static final EnumApplicatorType PHOTON_CIRCULAR
public static final EnumApplicatorType INTRAOPERATIVE
public static final EnumApplicatorType STEREOTACTIC
public static EnumApplicatorType[] values()
for (EnumApplicatorType c : EnumApplicatorType.values()) System.out.println(c);
public static EnumApplicatorType 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()