public enum ISO8061Month extends Enum<ISO8061Month>
Enum Constant and Description |
---|
APRIL |
AUGUST |
DECEMBER |
FEBRUARY |
JANUARY |
JULY |
JUNE |
MARCH |
MAY |
NOVEMBER |
OCTOBER |
SEPTEMBER |
Modifier and Type | Method and Description |
---|---|
static ISO8061Month |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ISO8061Month[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ISO8061Month JANUARY
public static final ISO8061Month FEBRUARY
public static final ISO8061Month MARCH
public static final ISO8061Month APRIL
public static final ISO8061Month MAY
public static final ISO8061Month JUNE
public static final ISO8061Month JULY
public static final ISO8061Month AUGUST
public static final ISO8061Month SEPTEMBER
public static final ISO8061Month OCTOBER
public static final ISO8061Month NOVEMBER
public static final ISO8061Month DECEMBER
public static ISO8061Month[] values()
for (ISO8061Month c : ISO8061Month.values()) System.out.println(c);
public static ISO8061Month valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2010–2016. All rights reserved.