Enum YearCycle

    • 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 name
        NullPointerException - if the argument is null