Package org.vaadin.miki.shared.dates
Enum DatePattern.MonthDisplayMode
- java.lang.Object
-
- java.lang.Enum<DatePattern.MonthDisplayMode>
-
- org.vaadin.miki.shared.dates.DatePattern.MonthDisplayMode
-
- All Implemented Interfaces:
Serializable,Comparable<DatePattern.MonthDisplayMode>
- Enclosing class:
- DatePattern
public static enum DatePattern.MonthDisplayMode extends Enum<DatePattern.MonthDisplayMode>
Defines available ways of displaying month.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NAMENUMBERZERO_PREFIXED_NUMBER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DatePattern.MonthDisplayModevalueOf(String name)Returns the enum constant of this type with the specified name.static DatePattern.MonthDisplayMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ZERO_PREFIXED_NUMBER
public static final DatePattern.MonthDisplayMode ZERO_PREFIXED_NUMBER
-
NUMBER
public static final DatePattern.MonthDisplayMode NUMBER
-
NAME
public static final DatePattern.MonthDisplayMode NAME
-
-
Method Detail
-
values
public static DatePattern.MonthDisplayMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DatePattern.MonthDisplayMode c : DatePattern.MonthDisplayMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DatePattern.MonthDisplayMode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-