Class NumberSerializers.FloatSerializer
- java.lang.Object
 - 
- com.fasterxml.jackson.databind.JsonSerializer<T>
 - 
- com.fasterxml.jackson.databind.ser.std.StdSerializer<T>
 - 
- com.fasterxml.jackson.databind.ser.std.StdScalarSerializer<T>
 - 
- com.fasterxml.jackson.databind.ser.std.NumberSerializers.Base<java.lang.Object>
 - 
- com.fasterxml.jackson.databind.ser.std.NumberSerializers.FloatSerializer
 
 
 
 
 
 
- 
- All Implemented Interfaces:
 JsonFormatVisitable,SchemaAware,ContextualSerializer,java.io.Serializable
- Enclosing class:
 - NumberSerializers
 
public static class NumberSerializers.FloatSerializer extends NumberSerializers.Base<java.lang.Object>
- See Also:
 - Serialized Form
 
 
- 
- 
Nested Class Summary
- 
Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.JsonSerializer
JsonSerializer.None 
 - 
 
- 
Constructor Summary
Constructors Constructor Description FloatSerializer() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidserialize(java.lang.Object value, JsonGenerator gen, SerializerProvider provider)Method that can be called to ask implementation to serialize values of type this serializer handles.- 
Methods inherited from class com.fasterxml.jackson.databind.ser.std.NumberSerializers.Base
acceptJsonFormatVisitor, createContextual, getSchema 
- 
Methods inherited from class com.fasterxml.jackson.databind.ser.std.StdScalarSerializer
serializeWithType 
- 
Methods inherited from class com.fasterxml.jackson.databind.ser.std.StdSerializer
getSchema, handledType, wrapAndThrow, wrapAndThrow 
- 
Methods inherited from class com.fasterxml.jackson.databind.JsonSerializer
getDelegatee, isEmpty, isEmpty, isUnwrappingSerializer, properties, replaceDelegatee, unwrappingSerializer, usesObjectId, withFilterId, withIgnoredProperties 
 - 
 
 - 
 
- 
- 
Method Detail
- 
serialize
public void serialize(java.lang.Object value, JsonGenerator gen, SerializerProvider provider) throws java.io.IOExceptionDescription copied from class:JsonSerializerMethod that can be called to ask implementation to serialize values of type this serializer handles.- Specified by:
 serializein classStdSerializer<java.lang.Object>- Parameters:
 value- Value to serialize; can not be null.gen- Generator used to output resulting Json contentprovider- Provider that can be used to get serializers for serializing Objects value contains, if any.- Throws:
 java.io.IOException
 
 - 
 
 -