public enum EnumCM_Trend extends java.lang.Enum<EnumCM_Trend>
| Enum Constant and Description |
|---|
CONTINUING_CHANGES_OF |
EVOLVING |
FREQUENT |
INTERMITTENT |
MULTIFOCAL |
MULTIPLE |
NEW |
OCCASIONAL |
SERIAL_CHANGES_CONSISTENT_WITH |
TEMPORARY |
TRANSIENT |
UNIFOCAL |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_Trend |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_Trend[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_Trend SERIAL_CHANGES_CONSISTENT_WITH
public static final EnumCM_Trend CONTINUING_CHANGES_OF
public static final EnumCM_Trend OCCASIONAL
public static final EnumCM_Trend INTERMITTENT
public static final EnumCM_Trend TEMPORARY
public static final EnumCM_Trend EVOLVING
public static final EnumCM_Trend NEW
public static final EnumCM_Trend MULTIPLE
public static final EnumCM_Trend TRANSIENT
public static final EnumCM_Trend UNIFOCAL
public static final EnumCM_Trend MULTIFOCAL
public static final EnumCM_Trend FREQUENT
public static EnumCM_Trend[] values()
for (EnumCM_Trend c : EnumCM_Trend.values()) System.out.println(c);
public static EnumCM_Trend 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()