public static enum RubyDate.DateField extends java.lang.Enum<RubyDate.DateField>
RubyDate.DateField
is designed for RubyDate.change(Map)
to use.Modifier and Type | Method and Description |
---|---|
static RubyDate.DateField |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RubyDate.DateField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RubyDate.DateField YEAR
public static final RubyDate.DateField MONTH
public static final RubyDate.DateField DAY
public static RubyDate.DateField[] values()
for (RubyDate.DateField c : RubyDate.DateField.values()) System.out.println(c);
public static RubyDate.DateField 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