- java.lang.Object
-
- java.lang.Enum<Limited.YearCycle>
-
- de.focus_shift.jollyday.core.spi.Limited.YearCycle
-
- All Implemented Interfaces:
Serializable,Comparable<Limited.YearCycle>
- Enclosing interface:
- Limited
public static enum Limited.YearCycle extends Enum<Limited.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 Limited.YearCyclevalueOf(String name)Returns the enum constant of this type with the specified name.static Limited.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 Limited.YearCycle EVERY_YEAR
-
ODD_YEARS
public static final Limited.YearCycle ODD_YEARS
-
EVEN_YEARS
public static final Limited.YearCycle EVEN_YEARS
-
TWO_YEARS
public static final Limited.YearCycle TWO_YEARS
-
THREE_YEARS
public static final Limited.YearCycle THREE_YEARS
-
FOUR_YEARS
public static final Limited.YearCycle FOUR_YEARS
-
FIVE_YEARS
public static final Limited.YearCycle FIVE_YEARS
-
SIX_YEARS
public static final Limited.YearCycle SIX_YEARS
-
-
Method Detail
-
values
public static Limited.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 (Limited.YearCycle c : Limited.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 Limited.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
-
-