public class StdArraySerializers extends Object
Modifier and Type | Class and Description |
---|---|
static class |
StdArraySerializers.BooleanArraySerializer |
static class |
StdArraySerializers.ByteArraySerializer
Unlike other integral number array serializers, we do not just print out byte values
as numbers.
|
static class |
StdArraySerializers.CharArraySerializer
Character arrays are different from other integral number arrays in that
they are most likely to be textual data, and should be written as
Strings, not arrays of entries.
|
static class |
StdArraySerializers.DoubleArraySerializer |
static class |
StdArraySerializers.FloatArraySerializer |
static class |
StdArraySerializers.IntArraySerializer |
static class |
StdArraySerializers.LongArraySerializer |
static class |
StdArraySerializers.ShortArraySerializer |
protected static class |
StdArraySerializers.TypedPrimitiveArraySerializer<T>
Intermediate base class used for cases where we may add
type information (excludes boolean/int/double arrays).
|
Modifier and Type | Field and Description |
---|---|
protected static HashMap<String,JsonSerializer<?>> |
_arraySerializers |
Modifier | Constructor and Description |
---|---|
protected |
StdArraySerializers() |
Modifier and Type | Method and Description |
---|---|
static JsonSerializer<?> |
findStandardImpl(Class<?> cls)
Accessor for checking to see if there is a standard serializer for
given primitive value type.
|
protected static final HashMap<String,JsonSerializer<?>> _arraySerializers
public static JsonSerializer<?> findStandardImpl(Class<?> cls)
Copyright © 2014-2015 FasterXML. All Rights Reserved.