Enum Class Enums.ValueType

java.lang.Object
java.lang.Enum<Enums.ValueType>
com.motivewave.platform.sdk.common.Enums.ValueType
All Implemented Interfaces:
Serializable, Comparable<Enums.ValueType>, Constable
Enclosing interface:
Enums

public static enum Enums.ValueType extends Enum<Enums.ValueType>
Describes the type of a value.
  • Enum Constant Details

    • DOUBLE

      public static final Enums.ValueType DOUBLE
      Double value (decimal numbers).
    • INTEGER

      public static final Enums.ValueType INTEGER
      Integer value (no decimal values).
    • BOOLEAN

      public static final Enums.ValueType BOOLEAN
      Boolean value (true or false).
    • CHOICE

      public static final Enums.ValueType CHOICE
      Value from a discrete selection of values.
    • UNKNOWN

      public static final Enums.ValueType UNKNOWN
      Unknown value type.
  • Method Details

    • values

      public static Enums.ValueType[] 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 Enums.ValueType 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