See: Description
| Interface | Description |
|---|---|
| JSONMapper<T> |
Maps object to JSON and vice versa.
|
| JSONMapperFactory<T> |
Factory to create a JSONMapper.
|
| Class | Description |
|---|---|
| JSONHelper | |
| JSONMappings |
Factory for JSONMappers.
|
| Exception | Description |
|---|---|
| NonMappableException |
Exception thrown within the common-json library implementation when anything goes wrong.
|
| Annotation Type | Description |
|---|---|
| FromJSON |
Declare the annotated method to be used to create an instance of the declaring class from JSON.
|
| JSONBean |
Declare the annotated class, field, or getter method to be handled as a Java Bean regarding JSON mapping.
|
| JSONMimeType |
Defines a MIME type for a class having a JSONMapper.
|
| JSONRaw |
Declare the annotated class, field, or getter method to be handled as follows:
If the annotated class Clazz has a method annotated @FromJSON declared as
@FromJSON
public static Clazz methodname(Object json)
this method is used to convert from JSON to the annotated class.
|
| JSONSerializable |
Defines either a factory to create a class's JSONMapper or the JSONMapper class itself.
|
| JSONTransient |
Define a field within a class to be ignored by the standard JSON serialization.
|
| ToJSON |
Declare the annotated method to be used to create a JSON representation of the declaring class.
|
Copyright © 2014 Tomas Teubner. All rights reserved.