* @param unmarshalType unmarshal type for json jackson type
* @param jsonView the view type for json jackson type
* @param include include such as <tt>ALWAYS</tt>, <tt>NON_NULL</tt>, etc.
*/
public T json(Class<?> unmarshalType, Class<?> jsonView, String include) {
JsonDataFormat json = new JsonDataFormat(JsonLibrary.Jackson);
json.setUnmarshalType(unmarshalType);
json.setJsonView(jsonView);
json.setInclude(include);
return dataFormat(json);
}