Uses of Interface
org.camunda.bpm.engine.impl.variable.serializer.TypedValueSerializer
-
Packages that use TypedValueSerializer Package Description org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.impl.cfg org.camunda.bpm.engine.impl.persistence.entity org.camunda.bpm.engine.impl.persistence.entity.util org.camunda.bpm.engine.impl.variable.serializer org.camunda.bpm.engine.impl.variable.serializer.jpa org.camunda.spin.plugin.impl -
-
Uses of TypedValueSerializer in org.camunda.bpm.engine.impl
Methods in org.camunda.bpm.engine.impl that return TypedValueSerializer Modifier and Type Method Description protected TypedValueSerializerSingleQueryVariableValueCondition. determineSerializer(VariableSerializers serializers, TypedValue value) -
Uses of TypedValueSerializer in org.camunda.bpm.engine.impl.cfg
Fields in org.camunda.bpm.engine.impl.cfg with type parameters of type TypedValueSerializer Modifier and Type Field Description protected java.util.List<TypedValueSerializer>ProcessEngineConfigurationImpl. customPostVariableSerializersprotected java.util.List<TypedValueSerializer>ProcessEngineConfigurationImpl. customPreVariableSerializersMethods in org.camunda.bpm.engine.impl.cfg that return types with arguments of type TypedValueSerializer Modifier and Type Method Description java.util.List<TypedValueSerializer>ProcessEngineConfigurationImpl. getCustomPostVariableSerializers()java.util.List<TypedValueSerializer>ProcessEngineConfigurationImpl. getCustomPreVariableSerializers()Method parameters in org.camunda.bpm.engine.impl.cfg with type arguments of type TypedValueSerializer Modifier and Type Method Description ProcessEngineConfigurationImplProcessEngineConfigurationImpl. setCustomPostVariableSerializers(java.util.List<TypedValueSerializer> customPostVariableTypes)ProcessEngineConfigurationImplProcessEngineConfigurationImpl. setCustomPreVariableSerializers(java.util.List<TypedValueSerializer> customPreVariableTypes) -
Uses of TypedValueSerializer in org.camunda.bpm.engine.impl.persistence.entity
Methods in org.camunda.bpm.engine.impl.persistence.entity that return TypedValueSerializer Modifier and Type Method Description TypedValueSerializer<?>HistoricDetailVariableInstanceUpdateEntity. getSerializer()TypedValueSerializer<?>HistoricVariableInstanceEntity. getSerializer()TypedValueSerializer<?>VariableInstanceEntity. getSerializer()Methods in org.camunda.bpm.engine.impl.persistence.entity with parameters of type TypedValueSerializer Modifier and Type Method Description voidVariableInstanceEntity. setSerializer(TypedValueSerializer<?> serializer) -
Uses of TypedValueSerializer in org.camunda.bpm.engine.impl.persistence.entity.util
Fields in org.camunda.bpm.engine.impl.persistence.entity.util declared as TypedValueSerializer Modifier and Type Field Description protected TypedValueSerializer<?>TypedValueField. serializerMethods in org.camunda.bpm.engine.impl.persistence.entity.util that return TypedValueSerializer Modifier and Type Method Description static TypedValueSerializer<?>TypedValueField. getFallbackSerializer(java.lang.String serializerName)TypedValueSerializer<?>TypedValueField. getSerializer() -
Uses of TypedValueSerializer in org.camunda.bpm.engine.impl.variable.serializer
Classes in org.camunda.bpm.engine.impl.variable.serializer that implement TypedValueSerializer Modifier and Type Class Description classAbstractObjectValueSerializerAbstract implementation of aTypedValueSerializerforObjectValues.classAbstractSerializableValueSerializer<T extends SerializableValue>classAbstractTypedValueSerializer<T extends TypedValue>classBooleanValueSerializerSerializes booleans as long values.classByteArrayValueSerializerclassDateValueSerializerSerializes Dates as long valuesclassDoubleValueSerializerclassFileValueSerializerclassIntegerValueSerializerclassJavaObjectSerializerUses default java serialization to serialize java objects as byte streams.classLongValueSerlializerclassNullValueSerializerUsed to serialize untyped null values.classPrimitiveValueSerializer<T extends PrimitiveValue<?>>classShortValueSerializerclassStringValueSerializerFields in org.camunda.bpm.engine.impl.variable.serializer with type parameters of type TypedValueSerializer Modifier and Type Field Description protected java.util.List<TypedValueSerializer<?>>DefaultVariableSerializers. serializerListprotected java.util.Map<java.lang.String,TypedValueSerializer<?>>DefaultVariableSerializers. serializerMapMethods in org.camunda.bpm.engine.impl.variable.serializer that return TypedValueSerializer Modifier and Type Method Description TypedValueSerializer<?>DefaultVariableSerializers. findSerializerForValue(TypedValue value)TypedValueSerializer<?>DefaultVariableSerializers. findSerializerForValue(TypedValue value, VariableSerializerFactory fallBackSerializerFactory)TypedValueSerializerVariableSerializers. findSerializerForValue(TypedValue value)Same as callingVariableSerializers.findSerializerForValue(TypedValue, VariableSerializerFactory)with no fallback serializer factory.TypedValueSerializerVariableSerializers. findSerializerForValue(TypedValue value, VariableSerializerFactory fallBackSerializerFactory)Selects theTypedValueSerializerwhich should be used for persisting a VariableValue.TypedValueSerializer<?>VariableSerializerFactory. getSerializer(java.lang.String serializerName)TypedValueSerializer<?>VariableSerializerFactory. getSerializer(TypedValue value)TypedValueSerializer<?>DefaultVariableSerializers. getSerializerByName(java.lang.String serializerName)TypedValueSerializer<?>VariableSerializers. getSerializerByName(java.lang.String serializerName)Methods in org.camunda.bpm.engine.impl.variable.serializer that return types with arguments of type TypedValueSerializer Modifier and Type Method Description java.util.List<TypedValueSerializer<?>>DefaultVariableSerializers. getSerializers()java.util.List<TypedValueSerializer<?>>VariableSerializers. getSerializers()Returns the serializers as a list in the order of their indices.Methods in org.camunda.bpm.engine.impl.variable.serializer with parameters of type TypedValueSerializer Modifier and Type Method Description DefaultVariableSerializersDefaultVariableSerializers. addSerializer(TypedValueSerializer<?> serializer)DefaultVariableSerializersDefaultVariableSerializers. addSerializer(TypedValueSerializer<?> serializer, int index)VariableSerializersVariableSerializers. addSerializer(TypedValueSerializer<?> serializer)VariableSerializersVariableSerializers. addSerializer(TypedValueSerializer<?> serializer, int index)Add type at the given index.intDefaultVariableSerializers. getSerializerIndex(TypedValueSerializer<?> serializer)intVariableSerializers. getSerializerIndex(TypedValueSerializer<?> serializer)VariableSerializersDefaultVariableSerializers. removeSerializer(TypedValueSerializer<?> serializer)VariableSerializersVariableSerializers. removeSerializer(TypedValueSerializer<?> serializer)Method parameters in org.camunda.bpm.engine.impl.variable.serializer with type arguments of type TypedValueSerializer Modifier and Type Method Description voidDefaultVariableSerializers. setSerializerList(java.util.List<TypedValueSerializer<?>> serializerList) -
Uses of TypedValueSerializer in org.camunda.bpm.engine.impl.variable.serializer.jpa
Classes in org.camunda.bpm.engine.impl.variable.serializer.jpa that implement TypedValueSerializer Modifier and Type Class Description classJPAVariableSerializerVariable type capable of storing reference to JPA-entities. -
Uses of TypedValueSerializer in org.camunda.spin.plugin.impl
Classes in org.camunda.spin.plugin.impl that implement TypedValueSerializer Modifier and Type Class Description classFallbackSpinObjectValueSerializerclassJsonValueSerializerclassSpinObjectValueSerializerImplementation of aTypedValueSerializerforObjectValuesusing a Spin-providedDataFormatto serialize and deserialize java objects.classSpinValueSerializerclassXmlValueSerializerMethods in org.camunda.spin.plugin.impl that return TypedValueSerializer Modifier and Type Method Description TypedValueSerializer<?>SpinFallbackSerializerFactory. getSerializer(java.lang.String serializerName)TypedValueSerializer<?>SpinFallbackSerializerFactory. getSerializer(TypedValue value)Methods in org.camunda.spin.plugin.impl that return types with arguments of type TypedValueSerializer Modifier and Type Method Description static java.util.List<TypedValueSerializer<?>>SpinVariableSerializers. createObjectValueSerializers(org.camunda.spin.DataFormats dataFormats)static java.util.List<TypedValueSerializer<?>>SpinVariableSerializers. createSpinValueSerializers(org.camunda.spin.DataFormats dataFormats)protected java.util.List<TypedValueSerializer<?>>SpinBpmPlatformPlugin. lookupSpinSerializers(java.lang.ClassLoader classLoader)protected java.util.List<TypedValueSerializer<?>>SpinProcessEnginePlugin. lookupSpinSerializers()
-