Uses of Interface
org.apache.tinkerpop.gremlin.structure.io.binary.TypeSerializer
-
Packages that use TypeSerializer Package Description org.apache.tinkerpop.gremlin.structure.io.binary org.apache.tinkerpop.gremlin.structure.io.binary.types -
-
Uses of TypeSerializer in org.apache.tinkerpop.gremlin.structure.io.binary
Methods in org.apache.tinkerpop.gremlin.structure.io.binary that return TypeSerializer Modifier and Type Method Description <DT> TypeSerializer<DT>
TypeSerializerRegistry. getSerializer(Class<DT> type)
<DT> TypeSerializer<DT>
TypeSerializerRegistry. getSerializer(DataType dataType)
Methods in org.apache.tinkerpop.gremlin.structure.io.binary with parameters of type TypeSerializer Modifier and Type Method Description <DT> TypeSerializerRegistry.Builder
TypeSerializerRegistry.Builder. add(Class<DT> type, TypeSerializer<DT> serializer)
Adds a serializer for a built-in type.Method parameters in org.apache.tinkerpop.gremlin.structure.io.binary with type arguments of type TypeSerializer Modifier and Type Method Description TypeSerializerRegistry.Builder
TypeSerializerRegistry.Builder. withFallbackResolver(Function<Class<?>,TypeSerializer<?>> fallbackResolver)
Provides a way to resolve the type serializer to use when there isn't any direct match. -
Uses of TypeSerializer in org.apache.tinkerpop.gremlin.structure.io.binary.types
Subinterfaces of TypeSerializer in org.apache.tinkerpop.gremlin.structure.io.binary.types Modifier and Type Interface Description interface
CustomTypeSerializer<T>
Represents a serializer for a custom (provider specific) serializer.interface
TransformSerializer<T>
Represents a special TypeSerializer placeholder that transforms the value into another before serializing it.
-