Uses of Interface
org.camunda.bpm.engine.variable.type.ValueType
-
Packages that use ValueType Package Description org.camunda.bpm.client.variable.impl org.camunda.bpm.client.variable.impl.type org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.impl.persistence.entity org.camunda.bpm.engine.impl.variable org.camunda.bpm.engine.impl.variable.serializer org.camunda.bpm.engine.rest.dto.task org.camunda.bpm.engine.task Classes related to theTaskService
.org.camunda.bpm.engine.variable.impl.type org.camunda.bpm.engine.variable.impl.value org.camunda.bpm.engine.variable.type org.camunda.bpm.engine.variable.value org.camunda.spin.plugin.variable.type org.camunda.spin.plugin.variable.type.impl org.camunda.spin.plugin.variable.value.impl -
-
Uses of ValueType in org.camunda.bpm.client.variable.impl
Fields in org.camunda.bpm.client.variable.impl declared as ValueType Modifier and Type Field Description protected ValueType
AbstractTypedValueMapper. valueType
Methods in org.camunda.bpm.client.variable.impl that return ValueType Modifier and Type Method Description ValueType
AbstractTypedValueMapper. getType()
ValueType
ValueMapper. getType()
Constructors in org.camunda.bpm.client.variable.impl with parameters of type ValueType Constructor Description AbstractTypedValueMapper(ValueType type)
-
Uses of ValueType in org.camunda.bpm.client.variable.impl.type
Classes in org.camunda.bpm.client.variable.impl.type that implement ValueType Modifier and Type Class Description class
JsonTypeImpl
class
XmlTypeImpl
-
Uses of ValueType in org.camunda.bpm.engine.impl
Methods in org.camunda.bpm.engine.impl with parameters of type ValueType Modifier and Type Method Description static VariableOrderProperty
VariableOrderProperty. forCaseExecutionVariable(java.lang.String variableName, ValueType valueType)
static VariableOrderProperty
VariableOrderProperty. forCaseInstanceVariable(java.lang.String variableName, ValueType valueType)
static VariableOrderProperty
VariableOrderProperty. forExecutionVariable(java.lang.String variableName, ValueType valueType)
static VariableOrderProperty
VariableOrderProperty. forProcessInstanceVariable(java.lang.String variableName, ValueType valueType)
static VariableOrderProperty
VariableOrderProperty. forTaskVariable(java.lang.String variableName, ValueType valueType)
TaskQuery
TaskQueryImpl. orderByCaseExecutionVariable(java.lang.String variableName, ValueType valueType)
TaskQuery
TaskQueryImpl. orderByCaseInstanceVariable(java.lang.String variableName, ValueType valueType)
TaskQuery
TaskQueryImpl. orderByExecutionVariable(java.lang.String variableName, ValueType valueType)
TaskQuery
TaskQueryImpl. orderByProcessVariable(java.lang.String variableName, ValueType valueType)
TaskQuery
TaskQueryImpl. orderByTaskVariable(java.lang.String variableName, ValueType valueType)
static QueryProperty
VariableOrderProperty. typeToQueryProperty(ValueType type)
Constructors in org.camunda.bpm.engine.impl with parameters of type ValueType Constructor Description VariableOrderProperty(java.lang.String name, ValueType valueType)
-
Uses of ValueType in org.camunda.bpm.engine.impl.persistence.entity
Methods in org.camunda.bpm.engine.impl.persistence.entity with parameters of type ValueType Modifier and Type Method Description protected boolean
VariableInstanceEntity. isObjectTyped(ValueType newType, java.lang.String oldTypeAsString)
The engine should only remove byte arrays in case the type changes but keep it when old and new types are object. -
Uses of ValueType in org.camunda.bpm.engine.impl.variable
Fields in org.camunda.bpm.engine.impl.variable with type parameters of type ValueType Modifier and Type Field Description protected java.util.Map<java.lang.String,ValueType>
ValueTypeResolverImpl. knownTypes
Methods in org.camunda.bpm.engine.impl.variable that return ValueType Modifier and Type Method Description ValueType
ValueTypeResolverImpl. typeForName(java.lang.String typeName)
Methods in org.camunda.bpm.engine.impl.variable that return types with arguments of type ValueType Modifier and Type Method Description java.util.Collection<ValueType>
ValueTypeResolverImpl. getSubTypes(ValueType type)
Methods in org.camunda.bpm.engine.impl.variable with parameters of type ValueType Modifier and Type Method Description void
ValueTypeResolverImpl. addType(ValueType type)
java.util.Collection<ValueType>
ValueTypeResolverImpl. getSubTypes(ValueType type)
-
Uses of ValueType in org.camunda.bpm.engine.impl.variable.serializer
Fields in org.camunda.bpm.engine.impl.variable.serializer declared as ValueType Modifier and Type Field Description protected ValueType
AbstractTypedValueSerializer. valueType
Methods in org.camunda.bpm.engine.impl.variable.serializer that return ValueType Modifier and Type Method Description ValueType
AbstractTypedValueSerializer. getType()
ValueType
TypedValueSerializer. getType()
TheVariableType
supportedConstructors in org.camunda.bpm.engine.impl.variable.serializer with parameters of type ValueType Constructor Description AbstractTypedValueSerializer(ValueType type)
-
Uses of ValueType in org.camunda.bpm.engine.rest.dto.task
Methods in org.camunda.bpm.engine.rest.dto.task that return ValueType Modifier and Type Method Description protected ValueType
TaskQueryDto. getValueTypeByName(java.lang.String name, ProcessEngine engine)
-
Uses of ValueType in org.camunda.bpm.engine.task
Methods in org.camunda.bpm.engine.task with parameters of type ValueType Modifier and Type Method Description TaskQuery
TaskQuery. orderByCaseExecutionVariable(java.lang.String variableName, ValueType valueType)
Order by a task variable value of a certain type.TaskQuery
TaskQuery. orderByCaseInstanceVariable(java.lang.String variableName, ValueType valueType)
Order by a task variable value of a certain type.TaskQuery
TaskQuery. orderByExecutionVariable(java.lang.String variableName, ValueType valueType)
Order by an execution variable value of a certain type.TaskQuery
TaskQuery. orderByProcessVariable(java.lang.String variableName, ValueType valueType)
Order by a process instance variable value of a certain type.TaskQuery
TaskQuery. orderByTaskVariable(java.lang.String variableName, ValueType valueType)
Order by a task variable value of a certain type. -
Uses of ValueType in org.camunda.bpm.engine.variable.impl.type
Classes in org.camunda.bpm.engine.variable.impl.type that implement ValueType Modifier and Type Class Description class
AbstractValueTypeImpl
class
FileValueTypeImpl
Valuetype to save files from byte arrays, inputstreams or just files as process variables and retrieve them via anInputStream
.class
ObjectTypeImpl
class
PrimitiveValueTypeImpl
Implementation of the primitive variable value typesstatic class
PrimitiveValueTypeImpl.BooleanTypeImpl
static class
PrimitiveValueTypeImpl.BytesTypeImpl
static class
PrimitiveValueTypeImpl.DateTypeImpl
static class
PrimitiveValueTypeImpl.DoubleTypeImpl
static class
PrimitiveValueTypeImpl.IntegerTypeImpl
static class
PrimitiveValueTypeImpl.LongTypeImpl
static class
PrimitiveValueTypeImpl.NullTypeImpl
static class
PrimitiveValueTypeImpl.NumberTypeImpl
static class
PrimitiveValueTypeImpl.ShortTypeImpl
static class
PrimitiveValueTypeImpl.StringTypeImpl
Methods in org.camunda.bpm.engine.variable.impl.type that return ValueType Modifier and Type Method Description ValueType
AbstractValueTypeImpl. getParent()
ValueType
PrimitiveValueTypeImpl.DoubleTypeImpl. getParent()
ValueType
PrimitiveValueTypeImpl.IntegerTypeImpl. getParent()
ValueType
PrimitiveValueTypeImpl.LongTypeImpl. getParent()
ValueType
PrimitiveValueTypeImpl.ShortTypeImpl. getParent()
Methods in org.camunda.bpm.engine.variable.impl.type with parameters of type ValueType Modifier and Type Method Description protected java.lang.IllegalArgumentException
AbstractValueTypeImpl. unsupportedConversion(ValueType typeToConvertTo)
-
Uses of ValueType in org.camunda.bpm.engine.variable.impl.value
Fields in org.camunda.bpm.engine.variable.impl.value declared as ValueType Modifier and Type Field Description protected ValueType
AbstractTypedValue. type
Methods in org.camunda.bpm.engine.variable.impl.value that return ValueType Modifier and Type Method Description ValueType
AbstractTypedValue. getType()
ValueType
FileValueImpl. getType()
ValueType
NullValueImpl. getType()
ValueType
UntypedValueImpl. getType()
Constructors in org.camunda.bpm.engine.variable.impl.value with parameters of type ValueType Constructor Description AbstractTypedValue(T value, ValueType type)
-
Uses of ValueType in org.camunda.bpm.engine.variable.type
Subinterfaces of ValueType in org.camunda.bpm.engine.variable.type Modifier and Type Interface Description interface
FileValueType
interface
PrimitiveValueType
interface
SerializableValueType
Methods in org.camunda.bpm.engine.variable.type that return ValueType Modifier and Type Method Description ValueType
ValueType. getParent()
Gets the parent value type.ValueType
ValueTypeResolver. typeForName(java.lang.String typeName)
Methods in org.camunda.bpm.engine.variable.type that return types with arguments of type ValueType Modifier and Type Method Description java.util.Collection<ValueType>
ValueTypeResolver. getSubTypes(ValueType type)
Returns all (transitive) sub types of the provided type given they are not abstractMethods in org.camunda.bpm.engine.variable.type with parameters of type ValueType Modifier and Type Method Description void
ValueTypeResolver. addType(ValueType type)
java.util.Collection<ValueType>
ValueTypeResolver. getSubTypes(ValueType type)
Returns all (transitive) sub types of the provided type given they are not abstract -
Uses of ValueType in org.camunda.bpm.engine.variable.value
Methods in org.camunda.bpm.engine.variable.value that return ValueType Modifier and Type Method Description ValueType
TypedValue. getType()
The type of the value. -
Uses of ValueType in org.camunda.spin.plugin.variable.type
Subinterfaces of ValueType in org.camunda.spin.plugin.variable.type Modifier and Type Interface Description interface
JsonValueType
interface
SpinValueType
interface
XmlValueType
-
Uses of ValueType in org.camunda.spin.plugin.variable.type.impl
Classes in org.camunda.spin.plugin.variable.type.impl that implement ValueType Modifier and Type Class Description class
JsonValueTypeImpl
class
SpinValueTypeImpl
class
XmlValueTypeImpl
-
Uses of ValueType in org.camunda.spin.plugin.variable.value.impl
Constructors in org.camunda.spin.plugin.variable.value.impl with parameters of type ValueType Constructor Description SpinValueImpl(org.camunda.spin.Spin<?> value, java.lang.String serializedValue, java.lang.String dataFormatName, boolean isDeserialized, ValueType type, boolean isTransient)
-