Uses of Interface
com.tangosol.io.pof.PofSerializer
-
Packages that use PofSerializer Package Description com.oracle.coherence.concurrent.atomic A small toolkit of classes that support lock-free thread-safe programming on single variables.com.tangosol.coherence.rest.util Contains packages and classes related to the Coherence REST API utilities.com.tangosol.io.pof Contains classes related to POF serialization and deserialization.com.tangosol.util Contains various generic utilities. -
-
Uses of PofSerializer in com.oracle.coherence.concurrent.atomic
Classes in com.oracle.coherence.concurrent.atomic that implement PofSerializer Modifier and Type Class Description static class
AtomicBoolean.Serializer
POF serializer implementation.static class
AtomicInteger.Serializer
POF serializer implementation.static class
AtomicLong.Serializer
POF serializer implementation.static class
AtomicMarkableReference.Serializer<V>
POF serializer implementation.static class
AtomicReference.Serializer<V>
POF serializer implementation.static class
AtomicStampedReference.Serializer<V>
POF serializer implementation. -
Uses of PofSerializer in com.tangosol.coherence.rest.util
Classes in com.tangosol.coherence.rest.util that implement PofSerializer Modifier and Type Class Description static class
JsonMap.Serializer
POF serializer for JsonMap. -
Uses of PofSerializer in com.tangosol.io.pof
Classes in com.tangosol.io.pof that implement PofSerializer Modifier and Type Class Description class
EnumPofSerializer
PofSerializer
implementation that can be used to serialize all enum values.class
ExternalizableLitePofSerializer
PofSerializer
implementation that supports the serialization and deserialization of any class that implementsExternalizableLite
to and from a POF stream.class
ExternalizablePofSerializer
PofSerializer
implementation that supports the serialization and deserialization of any class that implementsExternalizable
to and from a POF stream.class
InetAddressSerializer
POF serializer forjava.net.InetAddress
.class
InetSocketAddressSerializer
POF serializer forjava.net.InetSocketAddress
.class
OptionalDoubleSerializer
POF serializer forjava.util.OptionalDouble
.class
OptionalIntSerializer
POF serializer forjava.util.OptionalInt
.class
OptionalLongSerializer
POF serializer forjava.util.OptionalLong
.class
OptionalSerializer
POF serializer forjava.util.Optional
.class
PofAnnotationSerializer<T>
APofAnnotationSerializer
provides annotation based de/serialization.class
PortableObjectSerializer
PofSerializer
implementation that supports the serialization and deserialization of any class that implementsPortableObject
to and from a POF stream.class
PortableTypeSerializer<T>
APofSerializer
implementation that serializes classes that implementPortableObject
interface (and optionallyEvolvableObject
interface).class
PrincipalPofSerializer
PofSerializer implementation that can serialize and deserialize aPrincipal
to/from a POF stream.class
SafeConfigurablePofContext.ExternalSerializer
Serializer used for Serializable and ExternalizableLite objects.class
SafeConfigurablePofContext.JavaPofSerializer
Default Java serializer.class
SafeConfigurablePofContext.SafePofSerializer
Serializer used for objects implementing the PortableObject interface.class
SerializableSerializer
class
SubjectPofSerializer
PofSerializer implementation that can serialize and deserialize aSubject
to/from a POF stream.class
ThrowablePofSerializer
class
XmlSerializablePofSerializer
PofSerializer
implementation that supports the serialization and deserialization of any class that implementsXmlSerializable
to and from a POF stream.Fields in com.tangosol.io.pof declared as PofSerializer Modifier and Type Field Description PofSerializer[]
ConfigurablePofContext.PofConfig. m_aSerByTypeId
An array of PofSerializer objects, indexed by type identifier.Methods in com.tangosol.io.pof that return PofSerializer Modifier and Type Method Description PofSerializer
ConfigurablePofContext. getPofSerializer(int nTypeId)
Return a PofSerializer that can be used to serialize and deserialize an object of the specified user type to and from a POF stream.PofSerializer
PofContext. getPofSerializer(int nTypeId)
Return a PofSerializer that can be used to serialize and deserialize an object of the specified user type to and from a POF stream.PofSerializer
SafeConfigurablePofContext. getPofSerializer(int nTypeId)
Return a PofSerializer that can be used to serialize and deserialize an object of the specified user type to and from a POF stream.PofSerializer
SimplePofContext. getPofSerializer(int nTypeId)
Return a PofSerializer that can be used to serialize and deserialize an object of the specified user type to and from a POF stream.protected PofSerializer
ConfigurablePofContext. instantiateSerializer(XmlElement xmlSer, int nTypeId, Class clz)
Create aPofSerializer
from the provided XML serializer element.protected PofSerializer<?>
ConfigurablePofContext. instantiateSerializer(Class<? extends PofSerializer> clzSer, Integer nTypeId, Class<?> clz)
Instantiate specifiedPofSerializer
.Methods in com.tangosol.io.pof with parameters of type PofSerializer Modifier and Type Method Description <T> void
SimplePofContext. registerUserType(int nTypeId, Class<T> clz, PofSerializer<T> serializer)
Associate a user type with a type identifier andPofSerializer
.Method parameters in com.tangosol.io.pof with type arguments of type PofSerializer Modifier and Type Method Description protected PofSerializer<?>
ConfigurablePofContext. instantiateSerializer(Class<? extends PofSerializer> clzSer, Integer nTypeId, Class<?> clz)
Instantiate specifiedPofSerializer
. -
Uses of PofSerializer in com.tangosol.util
Methods in com.tangosol.util that return PofSerializer Modifier and Type Method Description PofSerializer
NullImplementation.NullPofContext. getPofSerializer(int nTypeId)
Return a PofSerializer that can be used to serialize and deserialize an object of the specified user type to and from a POF stream.
-