public class InetAddressSerializer extends ScalarSerializerBase<InetAddress>
InetAddress
. Main complexity is
with registration, since same serializer is to be used for sub-classes.JsonSerializer.None
限定符和类型 | 字段和说明 |
---|---|
static InetAddressSerializer |
instance |
_handledType
构造器和说明 |
---|
InetAddressSerializer() |
限定符和类型 | 方法和说明 |
---|---|
void |
serialize(InetAddress value,
JsonGenerator jgen,
SerializerProvider provider)
Method that can be called to ask implementation to serialize
values of type this serializer handles.
|
void |
serializeWithType(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.
|
getSchema
createObjectNode, createSchemaNode, createSchemaNode, handledType, isDefaultSerializer, wrapAndThrow, wrapAndThrow, wrapAndThrow, wrapAndThrow
isUnwrappingSerializer, unwrappingSerializer
public static final InetAddressSerializer instance
public void serialize(InetAddress value, JsonGenerator jgen, SerializerProvider provider) throws IOException, JsonGenerationException
JsonSerializer
serialize
在类中 SerializerBase<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.IOException
JsonGenerationException
public void serializeWithType(InetAddress value, JsonGenerator jgen, SerializerProvider provider, TypeSerializer typeSer) throws IOException, JsonGenerationException
ScalarSerializerBase
serializeWithType
在类中 ScalarSerializerBase<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 informationIOException
JsonGenerationException