Enum Class DayOfWeek

java.lang.Object
java.lang.Enum<DayOfWeek>
com.stimulsoft.report.DayOfWeek
All Implemented Interfaces:
Serializable, Comparable<DayOfWeek>, Constable

public enum DayOfWeek extends Enum<DayOfWeek>
Copyright Stimulsoft
  • Enum Constant Details

    • Monday

      public static final DayOfWeek Monday
    • Tuesday

      public static final DayOfWeek Tuesday
      The singleton instance for the day-of-week of Tuesday. This has the numeric value of 2.
    • Wednesday

      public static final DayOfWeek Wednesday
      The singleton instance for the day-of-week of Wednesday. This has the numeric value of 3.
    • Thursday

      public static final DayOfWeek Thursday
      The singleton instance for the day-of-week of Thursday. This has the numeric value of 4.
    • Friday

      public static final DayOfWeek Friday
      The singleton instance for the day-of-week of Friday. This has the numeric value of 5.
    • Saturday

      public static final DayOfWeek Saturday
      The singleton instance for the day-of-week of Saturday. This has the numeric value of 6.
    • Sunday

      public static final DayOfWeek Sunday
      The singleton instance for the day-of-week of Sunday. This has the numeric value of 7.
  • Method Details

    • values

      public static DayOfWeek[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static DayOfWeek valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getJavaDayOfWeek

      public DayOfWeek getJavaDayOfWeek()