|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use JsonReadOptions | |
|---|---|
| com.avaje.ebean.text.json | JSON formatting and parsing objects (See JsonContext). |
| Uses of JsonReadOptions in com.avaje.ebean.text.json |
|---|
| Methods in com.avaje.ebean.text.json that return JsonReadOptions | |
|---|---|
JsonReadOptions |
JsonReadOptions.addRootVisitor(JsonReadBeanVisitor<?> visitor)
Register a JsonReadBeanVisitor for the root level. |
JsonReadOptions |
JsonReadOptions.addVisitor(String path,
JsonReadBeanVisitor<?> visitor)
Register a JsonReadBeanVisitor for a given path. |
JsonReadOptions |
JsonReadOptions.setValueAdapter(JsonValueAdapter valueAdapter)
Set a JsonValueAdapter for custom DateTime and Date formatting. |
| Methods in com.avaje.ebean.text.json with parameters of type JsonReadOptions | ||
|---|---|---|
|
JsonContext.toBean(Class<T> rootType,
Reader json,
JsonReadOptions options)
Convert json reader input into a Bean of a specific type with options. |
|
|
JsonContext.toBean(Class<T> rootType,
String json,
JsonReadOptions options)
Convert json string input into a Bean of a specific type with options. |
|
|
JsonContext.toList(Class<T> rootType,
Reader json,
JsonReadOptions options)
Convert json reader input into a list of beans of a specific type with options. |
|
|
JsonContext.toList(Class<T> rootType,
String json,
JsonReadOptions options)
Convert json string input into a list of beans of a specific type with options. |
|
Object |
JsonContext.toObject(Type genericType,
Reader json,
JsonReadOptions options)
Use the genericType to determine if this should be converted into a List or bean. |
|
Object |
JsonContext.toObject(Type genericType,
String json,
JsonReadOptions options)
Use the genericType to determine if this should be converted into a List or bean. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||