public class BooleanPSerializer extends JavaTypeSerializer<java.lang.Boolean>
BIGDECIMAL_SERIALIZER, BIGINTEGER_SERIALIZER, BOOLEAN_SERIALIZER, BYTEARRAY_SERIALIZER, DOUBLE_SERIALIZER, FLOAT_SERIALIZER, INTEGER_SERIALIZER, LONG_SERIALIZER, mapper, SHORT_SERIALIZER, STRING_SERIALIZER| Constructor and Description |
|---|
BooleanPSerializer()
Create a new serializer for Java native boolean type.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.Boolean |
fromJson(java.lang.Boolean arg,
java.lang.String sval)
Parse the string JSON representation and assign it to the given argument.
|
java.lang.Boolean |
initialize(java.lang.Class definitionType)
Create an initial (default) instance for this serializer.
|
com.fasterxml.jackson.databind.JsonNode |
toJson(java.lang.Boolean val)
Serialize the given instance to JSON.
|
bootstrap, fromJson, getSerializer, getSerializer, getType, newInstance, newRecord, readArray, readArray, readArray, readMap, resolveJavaType, toJsonArray, toJsonObjectpublic BooleanPSerializer()
public java.lang.Boolean initialize(java.lang.Class definitionType)
Can be null for non-mutable instances.
initialize in class JavaTypeSerializer<java.lang.Boolean>definitionType - The type as it appears at the parameter's definition.null for immutable types, a Java native value for native types or a new instance,
for mutable types.public java.lang.Boolean fromJson(java.lang.Boolean arg,
java.lang.String sval)
fromJson in class JavaTypeSerializer<java.lang.Boolean>arg - The argument (obtained via initialize(java.lang.Class).sval - The string JSON representation of this argument.public com.fasterxml.jackson.databind.JsonNode toJson(java.lang.Boolean val)
toJson in class JavaTypeSerializer<java.lang.Boolean>val - The instance to serialize.