public enum YearFormat extends Enum<YearFormat>
Enum Constant and Description |
---|
FourDigits
4 digit year format.
|
TwoDigits
2 digit year format.
|
Modifier and Type | Method and Description |
---|---|
static YearFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static YearFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final YearFormat TwoDigits
public static final YearFormat FourDigits
public static YearFormat[] values()
for (YearFormat c : YearFormat.values()) System.out.println(c);
public static YearFormat 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 null