SchemaAware
public class InetAddressSerializer extends ScalarSerializerBase<java.net.InetAddress>
InetAddress
. Main complexity is
with registration, since same serializer is to be used for sub-classes.JsonSerializer.None
Modifier and Type | Field | Description |
---|---|---|
static InetAddressSerializer |
instance |
_handledType
Constructor | Description |
---|---|
InetAddressSerializer() |
Modifier and Type | Method | Description |
---|---|---|
void |
serialize(java.net.InetAddress value,
JsonGenerator jgen,
SerializerProvider provider) |
Method that can be called to ask implementation to serialize
values of type this serializer handles.
|
void |
serializeWithType(java.net.InetAddress value,
JsonGenerator jgen,
SerializerProvider provider,
TypeSerializer typeSer) |
Default implementation will write type prefix, call regular serialization
method (since assumption is that value itself does not need JSON
Array or Object start/end markers), and then write type suffix.
|
isUnwrappingSerializer, unwrappingSerializer
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getSchema
createObjectNode, createSchemaNode, createSchemaNode, handledType, isDefaultSerializer, wrapAndThrow, wrapAndThrow, wrapAndThrow, wrapAndThrow
public static final InetAddressSerializer instance
public void serialize(java.net.InetAddress value, JsonGenerator jgen, SerializerProvider provider) throws java.io.IOException, JsonGenerationException
JsonSerializer
serialize
in class SerializerBase<java.net.InetAddress>
value
- Value to serialize; can not be null.jgen
- Generator used to output resulting Json contentprovider
- Provider that can be used to get serializers for
serializing Objects value contains, if any.java.io.IOException
JsonGenerationException
public void serializeWithType(java.net.InetAddress value, JsonGenerator jgen, SerializerProvider provider, TypeSerializer typeSer) throws java.io.IOException, JsonGenerationException
ScalarSerializerBase
serializeWithType
in class ScalarSerializerBase<java.net.InetAddress>
value
- Value to serialize; can not be null.jgen
- Generator used to output resulting Json contentprovider
- Provider that can be used to get serializers for
serializing Objects value contains, if any.typeSer
- Type serializer to use for including type informationjava.io.IOException
JsonGenerationException