Enum GeneralizedTime.Format

    • Enum Constant Detail

      • YEAR_MONTH_DAY_HOUR_MIN_SEC

        public static final GeneralizedTime.Format YEAR_MONTH_DAY_HOUR_MIN_SEC
        Time format with minutes and seconds, excluding fraction.
      • YEAR_MONTH_DAY_HOUR_MIN_SEC_FRACTION

        public static final GeneralizedTime.Format YEAR_MONTH_DAY_HOUR_MIN_SEC_FRACTION
        Time format with minutes and seconds, including fraction.
      • YEAR_MONTH_DAY_HOUR_MIN

        public static final GeneralizedTime.Format YEAR_MONTH_DAY_HOUR_MIN
        Time format with minutes, seconds are omitted, excluding fraction.
      • YEAR_MONTH_DAY_HOUR_MIN_FRACTION

        public static final GeneralizedTime.Format YEAR_MONTH_DAY_HOUR_MIN_FRACTION
        Time format with minutes seconds are omitted, including fraction of a minute.
      • YEAR_MONTH_DAY_HOUR

        public static final GeneralizedTime.Format YEAR_MONTH_DAY_HOUR
        Time format, minutes and seconds are omitted, excluding fraction.
      • YEAR_MONTH_DAY_HOUR_FRACTION

        public static final GeneralizedTime.Format YEAR_MONTH_DAY_HOUR_FRACTION
        Time format, minutes and seconds are omitted, including fraction of an hour.
    • Method Detail

      • values

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

        public static GeneralizedTime.Format 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