Enum Class ProcessParameterDefinitionType

java.lang.Object
java.lang.Enum<ProcessParameterDefinitionType>
de.seitenbau.serviceportal.prozesspipeline.model.ProcessParameterDefinitionType
All Implemented Interfaces:
Serializable, Comparable<ProcessParameterDefinitionType>, Constable

public enum ProcessParameterDefinitionType extends Enum<ProcessParameterDefinitionType>
  • Enum Constant Details

    • STRING

      public static final ProcessParameterDefinitionType STRING
      Der im ProcessParameterDefinition gespeicherte String wird as-is verwendet.
    • JSON_STRING_MAP

      public static final ProcessParameterDefinitionType JSON_STRING_MAP
      Der im ProcessParameterDefinition gespeicherte String wird als JSON-Map<String, String> verwendet.
    • JSON_OBJECT

      public static final ProcessParameterDefinitionType JSON_OBJECT
      Der im ProcessParameterDefinition gespeicherte String wird als JSON-Object verwendet.
    • BINARY

      public static final ProcessParameterDefinitionType BINARY
      Der im ProcessParameterDefinition gespeicherte String wird als Byte-Array verwendet. Der Wert ist Base64 kodiert.
  • Method Details

    • values

      public static ProcessParameterDefinitionType[] 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 ProcessParameterDefinitionType 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