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