public enum EnumCV_Trend extends java.lang.Enum<EnumCV_Trend>
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCV_Trend |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCV_Trend[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCV_Trend SERIAL_CHANGES_CONSISTENT_WITH_D_2_3_4_SE
public static final EnumCV_Trend CONTINUING_CHANGES_OF_D_2_3_4_CC
public static final EnumCV_Trend OCCASIONAL_D_2_3_4_OC
public static final EnumCV_Trend INTERMITTENT_D_2_3_4_IM
public static final EnumCV_Trend TEMPORARY_D_2_3_4_TE
public static final EnumCV_Trend EVOLVING_D_2_3_4_EV
public static final EnumCV_Trend NEW_D_2_3_4_NE
public static final EnumCV_Trend MULTIPLE_D_2_3_4_MU
public static final EnumCV_Trend TRANSIENT_D_2_3_4_TR
public static final EnumCV_Trend UNIFOCAL_D_2_3_4_UF
public static final EnumCV_Trend MULTIFOCAL_D_2_3_4_MF
public static final EnumCV_Trend FREQUENT_D_2_3_4_FR
public static EnumCV_Trend[] values()
for (EnumCV_Trend c : EnumCV_Trend.values()) System.out.println(c);
public static EnumCV_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()