- java.lang.Object
-
- java.lang.Enum<YearCycle>
-
- de.focus_shift.jollyday.core.spi.YearCycle
-
- All Implemented Interfaces:
Serializable,Comparable<YearCycle>
public enum YearCycle extends Enum<YearCycle>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EVEN_YEARSEVERY_YEARFIVE_YEARSFOUR_YEARSODD_YEARSSIX_YEARSTHREE_YEARSTWO_YEARS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static YearCyclevalueOf(String name)Returns the enum constant of this type with the specified name.static YearCycle[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EVERY_YEAR
public static final YearCycle EVERY_YEAR
-
ODD_YEARS
public static final YearCycle ODD_YEARS
-
EVEN_YEARS
public static final YearCycle EVEN_YEARS
-
TWO_YEARS
public static final YearCycle TWO_YEARS
-
THREE_YEARS
public static final YearCycle THREE_YEARS
-
FOUR_YEARS
public static final YearCycle FOUR_YEARS
-
FIVE_YEARS
public static final YearCycle FIVE_YEARS
-
SIX_YEARS
public static final YearCycle SIX_YEARS
-
-
Method Detail
-
values
public static YearCycle[] 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 (YearCycle c : YearCycle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static YearCycle 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
-
-