Class StdKeySerializers.Default

  • All Implemented Interfaces:
    JsonFormatVisitable, SchemaAware, java.io.Serializable
    Enclosing class:
    StdKeySerializers

    public static class StdKeySerializers.Default
    extends StdSerializer<java.lang.Object>
    This is a "chameleon" style multi-type key serializer for simple standard JDK types.

    TODO: Should (but does not yet) support re-configuring format used for Date and Calendar key serializers, as well as alternative configuration of Enum key serializers.

    See Also:
    Serialized Form
    • Constructor Detail

      • Default

        public Default​(int typeId,
                       java.lang.Class<?> type)
    • Method Detail

      • serialize

        public void serialize​(java.lang.Object value,
                              JsonGenerator g,
                              SerializerProvider provider)
                       throws java.io.IOException
        Description copied from class: JsonSerializer
        Method that can be called to ask implementation to serialize values of type this serializer handles.
        Specified by:
        serialize in class StdSerializer<java.lang.Object>
        Parameters:
        value - Value to serialize; can not be null.
        g - Generator used to output resulting Json content
        provider - Provider that can be used to get serializers for serializing Objects value contains, if any.
        Throws:
        java.io.IOException