public static enum DatePattern.Order extends Enum<DatePattern.Order>
| Enum Constant and Description |
|---|
DAY_MONTH_YEAR |
MONTH_DAY_YEAR |
YEAR_MONTH_DAY |
| Modifier and Type | Method and Description |
|---|---|
static DatePattern.Order |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatePattern.Order[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatePattern.Order DAY_MONTH_YEAR
public static final DatePattern.Order MONTH_DAY_YEAR
public static final DatePattern.Order YEAR_MONTH_DAY
public static DatePattern.Order[] values()
for (DatePattern.Order c : DatePattern.Order.values()) System.out.println(c);
public static DatePattern.Order 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 © 2024 Miki. All rights reserved.