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