|
GWT 2.7.0 | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.google.web.bindery.autobean.shared.AutoBeanCodex
public class AutoBeanCodex
Utility methods for encoding an AutoBean graph into a JSON-compatible string. This codex intentionally does not preserve object identity, nor does it encode cycles, but it will detect them.
Constructor Summary | |
---|---|
AutoBeanCodex()
|
Method Summary | ||
---|---|---|
static
|
decode(AutoBeanFactory factory,
java.lang.Class<T> clazz,
Splittable data)
Decode an AutoBeanCodex payload. |
|
static
|
decode(AutoBeanFactory factory,
java.lang.Class<T> clazz,
java.lang.String payload)
Decode an AutoBeanCodex payload. |
|
static void |
decodeInto(Splittable data,
AutoBean<?> bean)
Copy data from a Splittable into an AutoBean. |
|
static Splittable |
encode(AutoBean<?> bean)
Encodes an AutoBean. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public AutoBeanCodex()
Method Detail |
---|
public static <T> AutoBean<T> decode(AutoBeanFactory factory, java.lang.Class<T> clazz, Splittable data)
T
- the expected return typefactory
- an AutoBeanFactory capable of producing AutoBean<T>
clazz
- the expected return typedata
- a payload previously generated by encode(AutoBean)
public static <T> AutoBean<T> decode(AutoBeanFactory factory, java.lang.Class<T> clazz, java.lang.String payload)
T
- the expected return typefactory
- an AutoBeanFactory capable of producing AutoBean<T>
clazz
- the expected return typepayload
- a payload string previously generated by
encode(AutoBean)
.getPayload()
.
public static void decodeInto(Splittable data, AutoBean<?> bean)
Splittable
into an AutoBean. Unset values in the
Splittable will not nullify data that already exists in the AutoBean.
data
- the source data to copybean
- the target AutoBeanpublic static Splittable encode(AutoBean<?> bean)
Splittable.getPayload()
.
bean
- the bean to encode
|
GWT 2.7.0 | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |