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