Enum Weekday

    • Enum Constant Detail

      • SUNDAY

        public static final Weekday SUNDAY
      • MONDAY

        public static final Weekday MONDAY
      • TUESDAY

        public static final Weekday TUESDAY
      • WEDNESDAY

        public static final Weekday WEDNESDAY
      • THURSDAY

        public static final Weekday THURSDAY
      • FRIDAY

        public static final Weekday FRIDAY
      • SATURDAY

        public static final Weekday SATURDAY
    • Method Detail

      • values

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

        public static Weekday 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
      • getCalendarConstant

        public int getCalendarConstant()
        Returns the corresponding Calendar constant.
        Returns:
        constant
      • toString

        public String toString()
        Returns the weekday name. The name is localized according to resource bundle entries.
        Overrides:
        toString in class Enum<Weekday>
      • getWeekday

        public static Weekday getWeekday​(Date date)
        Returns the weekday of a date.
        Parameters:
        date - date
        Returns:
        weekday
      • getWeekday

        public static Weekday getWeekday​(Calendar cal)
        Returns a weekday corresponding to a calendar value.
        Parameters:
        cal - calendar
        Returns:
        weekday