public enum EnumBrachyAccessoryDeviceType extends java.lang.Enum<EnumBrachyAccessoryDeviceType>
| Enum Constant and Description |
|---|
DILATATION
The DILATATION.
|
FLAB
The FLAB.
|
MOLD
The MOLD.
|
PLAQUE
The PLAQUE.
|
SHIELD
The SHIELD.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
Returns the String value of this enum.
|
static EnumBrachyAccessoryDeviceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumBrachyAccessoryDeviceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumBrachyAccessoryDeviceType SHIELD
public static final EnumBrachyAccessoryDeviceType DILATATION
public static final EnumBrachyAccessoryDeviceType MOLD
public static final EnumBrachyAccessoryDeviceType PLAQUE
public static final EnumBrachyAccessoryDeviceType FLAB
public static EnumBrachyAccessoryDeviceType[] values()
for (EnumBrachyAccessoryDeviceType c : EnumBrachyAccessoryDeviceType.values()) System.out.println(c);
public static EnumBrachyAccessoryDeviceType 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()