public static enum ParsedCalendar.ParseType extends Enum<ParsedCalendar.ParseType>
| Enum Constant and Description |
|---|
DAY |
MONTH |
MONTH_DAY |
YEAR_MONTH |
YEAR_MONTH_DAY |
| Modifier and Type | Method and Description |
|---|---|
static ParsedCalendar.ParseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParsedCalendar.ParseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParsedCalendar.ParseType YEAR_MONTH_DAY
public static final ParsedCalendar.ParseType YEAR_MONTH
public static final ParsedCalendar.ParseType MONTH_DAY
public static final ParsedCalendar.ParseType MONTH
public static final ParsedCalendar.ParseType DAY
public static ParsedCalendar.ParseType[] values()
for (ParsedCalendar.ParseType c : ParsedCalendar.ParseType.values()) System.out.println(c);
public static ParsedCalendar.ParseType 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 © 2012–2018. All rights reserved.