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