public static enum CosemDate.Month extends java.lang.Enum<CosemDate.Month>
Enum Constant and Description |
---|
APRIL |
AUGUST |
DECEMBER |
FEBRUARY |
JANUARY |
JULY |
JUNE |
MARCH |
MAY |
NOVEMBER |
OCTOBER |
SEPTEMBER |
Modifier and Type | Method and Description |
---|---|
static CosemDate.Month |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CosemDate.Month[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CosemDate.Month JANUARY
public static final CosemDate.Month FEBRUARY
public static final CosemDate.Month MARCH
public static final CosemDate.Month APRIL
public static final CosemDate.Month MAY
public static final CosemDate.Month JUNE
public static final CosemDate.Month JULY
public static final CosemDate.Month AUGUST
public static final CosemDate.Month SEPTEMBER
public static final CosemDate.Month OCTOBER
public static final CosemDate.Month NOVEMBER
public static final CosemDate.Month DECEMBER
public static CosemDate.Month[] values()
for (CosemDate.Month c : CosemDate.Month.values()) System.out.println(c);
public static CosemDate.Month 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 null