Enum Class ProcessParameterDefinitionType
java.lang.Object
java.lang.Enum<ProcessParameterDefinitionType>
de.seitenbau.serviceportal.prozesspipeline.model.ProcessParameterDefinitionType
- All Implemented Interfaces:
Serializable,Comparable<ProcessParameterDefinitionType>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDer im ProcessParameterDefinition gespeicherte String wird als Byte-Array verwendet.Der im ProcessParameterDefinition gespeicherte String wird als JSON-Object verwendet.Der im ProcessParameterDefinition gespeicherte String wird als JSON-Map<String, String> verwendet.Der im ProcessParameterDefinition gespeicherte String wird as-is verwendet. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static ProcessParameterDefinitionType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
STRING
Der im ProcessParameterDefinition gespeicherte String wird as-is verwendet. -
JSON_STRING_MAP
Der im ProcessParameterDefinition gespeicherte String wird als JSON-Map<String, String> verwendet. -
JSON_OBJECT
Der im ProcessParameterDefinition gespeicherte String wird als JSON-Object verwendet. -
BINARY
Der im ProcessParameterDefinition gespeicherte String wird als Byte-Array verwendet. Der Wert ist Base64 kodiert.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-