Enum TimeUnit

java.lang.Object
java.lang.Enum<TimeUnit>
com.smartgwt.client.types.TimeUnit
All Implemented Interfaces:
ValueEnum, Serializable, Comparable<TimeUnit>, Constable

public enum TimeUnit extends Enum<TimeUnit> implements ValueEnum
An enum of time-units available for use with the RelativeDateItem, TimeItem and Calendar widgets.
  • Enum Constant Details

    • MILLISECOND

      public static final TimeUnit MILLISECOND
      a millisecond time-unit

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "millisecond".

    • SECOND

      public static final TimeUnit SECOND
      a second time-unit

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "second".

    • MINUTE

      public static final TimeUnit MINUTE
      a minute time-unit

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "minute".

    • HOUR

      public static final TimeUnit HOUR
      an hour time-unit

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "hour".

    • DAY

      public static final TimeUnit DAY
      a day time-unit

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "day".

    • WEEK

      public static final TimeUnit WEEK
      a week time-unit

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "week".

    • MONTH

      public static final TimeUnit MONTH
      a month time-unit

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "month".

    • QUARTER

      public static final TimeUnit QUARTER
      a quarter (3 month) time-unit

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "quarter".

    • YEAR

      public static final TimeUnit YEAR
      a year time-unit

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "year".

  • Method Details

    • values

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

      public static TimeUnit 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
    • getValue

      public String getValue()
      Specified by:
      getValue in interface ValueEnum