Enum Calendar

    • Enum Constant Detail

      • gregorian

        public static final Calendar gregorian
      • proleptic_gregorian

        public static final Calendar proleptic_gregorian
      • noleap

        public static final Calendar noleap
      • all_leap

        public static final Calendar all_leap
      • uniform30day

        public static final Calendar uniform30day
      • julian

        public static final Calendar julian
      • none

        public static final Calendar none
    • Method Detail

      • values

        public static Calendar[] 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 (Calendar c : Calendar.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Calendar 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
      • getDefault

        public static Calendar getDefault()
      • getChronology

        public Chronology getChronology()