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