Enum Class DataProperty.Type

java.lang.Object
java.lang.Enum<DataProperty.Type>
com.sas.lsaf.workflow.processflow.DataProperty.Type
All Implemented Interfaces:
Serializable, Comparable<DataProperty.Type>, Constable
Enclosing class:
DataProperty

public static enum DataProperty.Type extends Enum<DataProperty.Type>
The property types.
  • Enum Constant Details

    • LONG

      public static final DataProperty.Type LONG
      A long numeric.
    • STRING

      public static final DataProperty.Type STRING
      A string value.
    • DATE

      public static final DataProperty.Type DATE
      A date value.
    • BOOLEAN

      public static final DataProperty.Type BOOLEAN
      A Boolean value. The values for this type are True and False. True values are displayed as Yes and false values as No.
    • ENUM

      public static final DataProperty.Type ENUM
      An enumeration of ordinal values.
  • Method Details

    • values

      public static DataProperty.Type[] 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 DataProperty.Type 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