public static class StdArraySerializers.FloatArraySerializer extends ArraySerializerBase<T>
JsonSerializer.None
Constructor and Description |
---|
FloatArraySerializer() |
FloatArraySerializer(StdArraySerializers.FloatArraySerializer src,
BeanProperty prop,
java.lang.Boolean unwrapSingle) |
Modifier and Type | Method and Description |
---|---|
JsonSerializer<?> |
_withResolved(BeanProperty prop,
java.lang.Boolean unwrapSingle) |
void |
acceptJsonFormatVisitor(JsonFormatVisitorWrapper visitor,
JavaType typeHint)
Default implementation specifies no format.
|
JsonSerializer<?> |
getContentSerializer()
Accessor for serializer used for serializing contents
(List and array elements, Map values etc) of the
container for which this serializer is used, if it is
known statically.
|
JavaType |
getContentType()
Accessor for finding declared (static) element type for
type this serializer is used for.
|
JsonNode |
getSchema(SerializerProvider provider,
java.lang.reflect.Type typeHint)
Default implementation simply claims type is "string"; usually
overriden by custom serializers.
|
boolean |
hasSingleElement(float[] value)
Method called to determine if the given value (of type handled by
this serializer) contains exactly one element.
|
boolean |
isEmpty(SerializerProvider prov,
float[] value)
Method called to check whether given serializable value is
considered "empty" value (for purposes of suppressing serialization
of empty values).
|
void |
serialize(float[] value,
JsonGenerator g,
SerializerProvider provider)
Method that can be called to ask implementation to serialize
values of type this serializer handles.
|
void |
serializeContents(float[] value,
JsonGenerator g,
SerializerProvider provider) |
createContextual, serializeWithType
withValueTypeSerializer
getSchema, handledType, wrapAndThrow, wrapAndThrow
getDelegatee, isEmpty, isUnwrappingSerializer, properties, replaceDelegatee, unwrappingSerializer, usesObjectId, withFilterId
public FloatArraySerializer()
public FloatArraySerializer(StdArraySerializers.FloatArraySerializer src, BeanProperty prop, java.lang.Boolean unwrapSingle)
public JsonSerializer<?> _withResolved(BeanProperty prop, java.lang.Boolean unwrapSingle)
_withResolved
in class ArraySerializerBase<float[]>
public JavaType getContentType()
ContainerSerializer
getContentType
in class ContainerSerializer<float[]>
public JsonSerializer<?> getContentSerializer()
ContainerSerializer
ContainerSerializer.getContentType()
and
SerializerProvider.findValueSerializer(java.lang.Class<?>, com.fasterxml.jackson.databind.BeanProperty)
.getContentSerializer
in class ContainerSerializer<float[]>
public boolean isEmpty(SerializerProvider prov, float[] value)
JsonSerializer
Default implementation will consider only null values to be empty.
NOTE: replaces JsonSerializer.isEmpty(Object)
, which was deprecated in 2.5
isEmpty
in class JsonSerializer<float[]>
public boolean hasSingleElement(float[] value)
ContainerSerializer
Note: although it might seem sensible to instead define something like "getElementCount()" method, this would not work well for containers that do not keep track of size (like linked lists may not).
Note, too, that as of now (2.9) this method is only called by serializer
itself; and specifically is not used for non-array/collection types
like Map
or Map.Entry
instances.
hasSingleElement
in class ContainerSerializer<float[]>
public final void serialize(float[] value, JsonGenerator g, SerializerProvider provider) throws java.io.IOException
JsonSerializer
serialize
in class ArraySerializerBase<float[]>
value
- Value to serialize; can not be null.g
- 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
public void serializeContents(float[] value, JsonGenerator g, SerializerProvider provider) throws java.io.IOException
java.io.IOException
public JsonNode getSchema(SerializerProvider provider, java.lang.reflect.Type typeHint)
StdSerializer
getSchema
in interface SchemaAware
getSchema
in class StdSerializer<float[]>
provider
- The serializer provider.typeHint
- A hint about the type.public void acceptJsonFormatVisitor(JsonFormatVisitorWrapper visitor, JavaType typeHint) throws JsonMappingException
StdSerializer
acceptJsonFormatVisitor
in interface JsonFormatVisitable
acceptJsonFormatVisitor
in class StdSerializer<float[]>
typeHint
- Type of element (entity like property) being visitedJsonMappingException
Copyright © 2010 - 2020 Adobe. All Rights Reserved