Uses of Class
org.jsonex.jsoncoder.JSONCoderOption
-
Packages that use JSONCoderOption Package Description org.jsonex.jsoncoder -
-
Uses of JSONCoderOption in org.jsonex.jsoncoder
Methods in org.jsonex.jsoncoder that return JSONCoderOption Modifier and Type Method Description JSONCoderOptionJSONCoderOption. addCoder(ICoder<?>... codes)JSONCoderOptionJSONCoderOption. addDefaultFilter(FieldTransformer filter)JSONCoderOptionJSONCoderOption. addFilterFor(Class<?> cls, FieldTransformer filter)JSONCoderOptionJSONCoderOption. addFilterFor(Class<?> cls, FieldTransformer filter, boolean last)JSONCoderOptionJSONCoderOption. addIgnoreSubClassFieldsClasses(Class<?>... cls)JSONCoderOptionJSONCoderOption. addSkippedClasses(Class<?>... cls)JSONCoderOptionJSONCoderOption. addSkippedClasses(String... cls)JSONCoderOptionJSONCoderOption. addSkippedPackages(String... pkgs)static JSONCoderOptionJSONCoderOption. of()static JSONCoderOptionJSONCoderOption. ofIndentFactor(int factor)JSONCoderOptionJSONCoderOption. setJsonOption(boolean alwaysQuoteName, char quoteChar, int indentFactor)Methods in org.jsonex.jsoncoder with parameters of type JSONCoderOption Modifier and Type Method Description static <T> TJSONCoder. decode(Reader reader, Class<T> type, JSONCoderOption opt)static <T> TJSONCoder. decode(String jsonStr, Class<T> type, JSONCoderOption opt)static <T> TJSONCoder. decode(org.jsonex.core.charsource.CharSource source, Class<T> type, JSONCoderOption opt)static <T> TJSONCoder. decode(DecodeReq<T> req, JSONCoderOption opt)static <T> TJSONCoder. decode(TDNode treeDocNode, Class<T> type, JSONCoderOption opt)static <T> TJSONCoder. decodeTo(String str, T target, JSONCoderOption opt)static voidJSONCoder. encode(Object obj, Writer writer, JSONCoderOption opt)static StringJSONCoder. encode(Object obj, JSONCoderOption opt)static StringJSONCoder. encode(EncodeReq req, JSONCoderOption opt)Constructors in org.jsonex.jsoncoder with parameters of type JSONCoderOption Constructor Description JSONCoder(JSONCoderOption option)
-