Package | Description |
---|---|
net.minidev.json | |
net.minidev.json.reader |
Modifier and Type | Method and Description |
---|---|
static <T> void |
JSONValue.registerWriter(Class<?> cls,
JsonWriterI<T> writer)
Register a serializer for a class.
|
Modifier and Type | Class and Description |
---|---|
class |
ArrayWriter |
class |
BeansWriter |
class |
BeansWriterASM |
class |
BeansWriterASMRemap |
Modifier and Type | Field and Description |
---|---|
static JsonWriterI<Object> |
JsonWriter.arrayWriter
Json-Smart ArrayWriterClass
|
static JsonWriterI<Object> |
JsonWriter.beansWriter
Json-Smart V1 Beans serialiser
|
static JsonWriterI<Object> |
JsonWriter.beansWriterASM
Json-Smart V2 Beans serialiser
Based on ASM
|
static JsonWriterI<Enum<?>> |
JsonWriter.EnumWriter |
static JsonWriterI<Iterable<? extends Object>> |
JsonWriter.JSONIterableWriter |
static JsonWriterI<JSONAwareEx> |
JsonWriter.JSONJSONAwareExWriter |
static JsonWriterI<JSONAware> |
JsonWriter.JSONJSONAwareWriter |
static JsonWriterI<Map<String,? extends Object>> |
JsonWriter.JSONMapWriter |
static JsonWriterI<JSONStreamAwareEx> |
JsonWriter.JSONStreamAwareExWriter |
static JsonWriterI<JSONStreamAwareEx> |
JsonWriter.JSONStreamAwareWriter |
static JsonWriterI<Object> |
JsonWriter.toStringWriter
ToString Writer
|
Modifier and Type | Method and Description |
---|---|
JsonWriterI |
JsonWriter.getWrite(Class cls) |
JsonWriterI |
JsonWriter.getWriterByInterface(Class<?> clazz)
try to find a Writer by Cheking implemented interface
|
Modifier and Type | Method and Description |
---|---|
void |
JsonWriter.addInterfaceWriterFirst(Class<?> interFace,
JsonWriterI<?> writer)
Deprecated.
use registerWriterInterfaceFirst
|
void |
JsonWriter.addInterfaceWriterLast(Class<?> interFace,
JsonWriterI<?> writer)
Deprecated.
use registerWriterInterfaceLast
|
<T> void |
JsonWriter.registerWriter(JsonWriterI<T> writer,
Class<?>... cls)
associate an Writer to a Class
|
void |
JsonWriter.registerWriterInterface(Class<?> interFace,
JsonWriterI<?> writer)
an alias for registerWriterInterfaceLast
|
void |
JsonWriter.registerWriterInterfaceFirst(Class<?> interFace,
JsonWriterI<?> writer)
associate an Writer to a interface With Hi priority
|
void |
JsonWriter.registerWriterInterfaceLast(Class<?> interFace,
JsonWriterI<?> writer)
associate an Writer to a interface With Low priority
|
Copyright © 2017 Chemouni Uriel. All rights reserved.