Package org.jclouds.json
Interface Json
- All Known Implementing Classes:
- GsonWrapper
public interface Json
- 
Method SummaryModifier and TypeMethodDescription<T> TfromJson(InputStream json, Charset charset, Class<T> classOfT) Deserialize the object from json.<T> TfromJson(InputStream json, Charset charset, Type type) Deserialize the generic object from json.<T> TDeserialize the object from json.<T> TDeserialize the generic object from json.Serialize the object into json.Serialize the generic object into json.
- 
Method Details- 
toJsonSerialize the object into json. If the object is a generic type, usetoJson(Object, Type)
- 
toJsonSerialize the generic object into json. If the object is not a generic, usetoJson(Object, Type)
- 
fromJsonDeserialize the generic object from json. If the object is not a generic type, useinvalid reference#fromJson(Object, Class)
- 
fromJsonDeserialize the object from json. If the object is a generic type, useinvalid reference#fromJson(Object, Type)
- 
fromJsonDeserialize the generic object from json. If the object is not a generic type, useinvalid reference#fromJson(Object, Class)
- 
fromJsonDeserialize the object from json. If the object is a generic type, useinvalid reference#fromJson(Object, Type)
 
-