Enum Class ScalarDataType

java.lang.Object
java.lang.Enum<ScalarDataType>
hec.rss.model.globalvariable.ScalarDataType
All Implemented Interfaces:
Serializable, Comparable<ScalarDataType>, java.lang.constant.Constable

public enum ScalarDataType extends Enum<ScalarDataType>
enum of the Data Types of ScalarGlobalVariables
  • Enum Constant Details

    • INTEGER

      public static final ScalarDataType INTEGER
      The singleton instance for Integers
    • BOOLEAN

      public static final ScalarDataType BOOLEAN
      The singleton instance for Booleans
    • DOUBLE

      public static final ScalarDataType DOUBLE
      The singleton instance for Booleans
    • DATE

      public static final ScalarDataType DATE
      The singleton instance for Dates
    • TIME

      public static final ScalarDataType TIME
      The singleton instance for Times
    • DATEANDTIME

      public static final ScalarDataType DATEANDTIME
      The singleton instance for Date and Times
    • DAYOFWEEK

      public static final ScalarDataType DAYOFWEEK
      The singleton instance for Days of the Week
    • SEASONAL_DATE

      public static final ScalarDataType SEASONAL_DATE
      The singleton instance for SeasonalDates
    • MONTHOFYEAR

      public static final ScalarDataType MONTHOFYEAR
      The singleton instance for Months of the Year
  • Method Details

    • values

      public static ScalarDataType[] 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 ScalarDataType 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
    • toString

      public String toString()
      Overrides:
      toString in class Enum<ScalarDataType>