Uses of Interface
org.camunda.bpm.engine.variable.type.ValueType

Packages that use ValueType
org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users. 
org.camunda.bpm.engine.impl.core.variable.type   
org.camunda.bpm.engine.impl.core.variable.value   
org.camunda.bpm.engine.impl.variable   
org.camunda.bpm.engine.impl.variable.serializer   
org.camunda.bpm.engine.task Classes related to the TaskService
org.camunda.bpm.engine.variable.type   
org.camunda.bpm.engine.variable.value   
 

Uses of ValueType in org.camunda.bpm.engine.impl
 

Methods in org.camunda.bpm.engine.impl with parameters of type ValueType
static VariableOrderProperty VariableOrderProperty.forCaseExecutionVariable(String variableName, ValueType valueType)
           
static VariableOrderProperty VariableOrderProperty.forCaseInstanceVariable(String variableName, ValueType valueType)
           
static VariableOrderProperty VariableOrderProperty.forExecutionVariable(String variableName, ValueType valueType)
           
static VariableOrderProperty VariableOrderProperty.forProcessInstanceVariable(String variableName, ValueType valueType)
           
static VariableOrderProperty VariableOrderProperty.forTaskVariable(String variableName, ValueType valueType)
           
 TaskQuery TaskQueryImpl.orderByCaseExecutionVariable(String variableName, ValueType valueType)
           
 TaskQuery TaskQueryImpl.orderByCaseInstanceVariable(String variableName, ValueType valueType)
           
 TaskQuery TaskQueryImpl.orderByExecutionVariable(String variableName, ValueType valueType)
           
 TaskQuery TaskQueryImpl.orderByProcessVariable(String variableName, ValueType valueType)
           
 TaskQuery TaskQueryImpl.orderByTaskVariable(String variableName, ValueType valueType)
           
static QueryProperty VariableOrderProperty.typeToQueryProperty(ValueType type)
           
 

Constructors in org.camunda.bpm.engine.impl with parameters of type ValueType
VariableOrderProperty(String name, ValueType valueType)
           
 

Uses of ValueType in org.camunda.bpm.engine.impl.core.variable.type
 

Classes in org.camunda.bpm.engine.impl.core.variable.type that implement ValueType
 class AbstractValueTypeImpl
           
 class ObjectTypeImpl
           
 class PrimitiveValueTypeImpl
          Implementation of the primitive variable value types
static 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.impl.core.variable.type that return ValueType
 ValueType PrimitiveValueTypeImpl.DoubleTypeImpl.getParent()
           
 ValueType PrimitiveValueTypeImpl.IntegerTypeImpl.getParent()
           
 ValueType PrimitiveValueTypeImpl.LongTypeImpl.getParent()
           
 ValueType PrimitiveValueTypeImpl.ShortTypeImpl.getParent()
           
 ValueType AbstractValueTypeImpl.getParent()
           
 

Methods in org.camunda.bpm.engine.impl.core.variable.type with parameters of type ValueType
protected  ProcessEngineException AbstractValueTypeImpl.unsupportedConversion(ValueType typeToConvertTo)
           
 

Uses of ValueType in org.camunda.bpm.engine.impl.core.variable.value
 

Fields in org.camunda.bpm.engine.impl.core.variable.value declared as ValueType
protected  ValueType AbstractTypedValue.type
           
 

Methods in org.camunda.bpm.engine.impl.core.variable.value that return ValueType
 ValueType AbstractTypedValue.getType()
           
 ValueType UntypedValueImpl.getType()
           
 ValueType NullValueImpl.getType()
           
 

Constructors in org.camunda.bpm.engine.impl.core.variable.value with parameters of type ValueType
AbstractTypedValue(T value, ValueType type)
           
 

Uses of ValueType in org.camunda.bpm.engine.impl.variable
 

Fields in org.camunda.bpm.engine.impl.variable with type parameters of type ValueType
protected  Map<String,ValueType> ValueTypeResolverImpl.knownTypes
           
 

Methods in org.camunda.bpm.engine.impl.variable that return ValueType
 ValueType ValueTypeResolverImpl.typeForName(String typeName)
           
 

Methods in org.camunda.bpm.engine.impl.variable that return types with arguments of type ValueType
 Collection<ValueType> ValueTypeResolverImpl.getSubTypes(ValueType type)
           
 

Methods in org.camunda.bpm.engine.impl.variable with parameters of type ValueType
 void ValueTypeResolverImpl.addType(ValueType type)
           
 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
protected  ValueType AbstractTypedValueSerializer.valueType
           
 

Methods in org.camunda.bpm.engine.impl.variable.serializer that return ValueType
 ValueType TypedValueSerializer.getType()
          The VariableType supported
 ValueType AbstractTypedValueSerializer.getType()
           
 

Constructors in org.camunda.bpm.engine.impl.variable.serializer with parameters of type ValueType
AbstractTypedValueSerializer(ValueType type)
           
 

Uses of ValueType in org.camunda.bpm.engine.task
 

Methods in org.camunda.bpm.engine.task with parameters of type ValueType
 TaskQuery TaskQuery.orderByCaseExecutionVariable(String variableName, ValueType valueType)
          Order by a task variable value of a certain type.
 TaskQuery TaskQuery.orderByCaseInstanceVariable(String variableName, ValueType valueType)
          Order by a task variable value of a certain type.
 TaskQuery TaskQuery.orderByExecutionVariable(String variableName, ValueType valueType)
          Order by an execution variable value of a certain type.
 TaskQuery TaskQuery.orderByProcessVariable(String variableName, ValueType valueType)
          Order by a process instance variable value of a certain type.
 TaskQuery TaskQuery.orderByTaskVariable(String variableName, ValueType valueType)
          Order by a task variable value of a certain type.
 

Uses of ValueType in org.camunda.bpm.engine.variable.type
 

Subinterfaces of ValueType in org.camunda.bpm.engine.variable.type
 interface PrimitiveValueType
           
 interface SerializableValueType
           
 

Methods in org.camunda.bpm.engine.variable.type that return ValueType
 ValueType ValueType.getParent()
          Gets the parent value type.
 ValueType ValueTypeResolver.typeForName(String typeName)
           
 

Methods in org.camunda.bpm.engine.variable.type that return types with arguments of type ValueType
 Collection<ValueType> ValueTypeResolver.getSubTypes(ValueType type)
          Returns all (transitive) sub types of the provided type given they are not abstract
 

Methods in org.camunda.bpm.engine.variable.type with parameters of type ValueType
 void ValueTypeResolver.addType(ValueType type)
           
 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
 ValueType TypedValue.getType()
          The type of the value.
 



Copyright © 2015 camunda services GmbH. All rights reserved.