Uses of Class
com.fasterxml.jackson.jr.ob.JSONObjectException
-
Packages that use JSONObjectException Package Description com.fasterxml.jackson.jr.ob com.fasterxml.jackson.jr.ob.impl -
-
Uses of JSONObjectException in com.fasterxml.jackson.jr.ob
Methods in com.fasterxml.jackson.jr.ob that return JSONObjectException Modifier and Type Method Description static JSONObjectExceptionJSONObjectException. from(com.fasterxml.jackson.core.JsonParser p, String msg)static JSONObjectExceptionJSONObjectException. from(com.fasterxml.jackson.core.JsonParser p, String msg, Object... args)static JSONObjectExceptionJSONObjectException. from(com.fasterxml.jackson.core.JsonParser p, Throwable problem, String msg, Object... args)static JSONObjectExceptionJSONObjectException. fromUnexpectedIOE(IOException src)Factory method used when "upgrading" anIOExceptionintoJSONObjectException: usually only needed to comply with a signature.static JSONObjectExceptionJSONObjectException. wrapWithPath(Throwable src, JSONObjectException.Reference ref)Method that can be called to either create a new JsonMappingException (if underlying exception is not a JsonMappingException), or augment given exception with given path/reference information.static JSONObjectExceptionJSONObjectException. wrapWithPath(Throwable src, Object refFrom, int index)Method that can be called to either create a new JsonMappingException (if underlying exception is not a JsonMappingException), or augment given exception with given path/reference information.static JSONObjectExceptionJSONObjectException. wrapWithPath(Throwable src, Object refFrom, String refFieldName)Method that can be called to either create a new JsonMappingException (if underlying exception is not a JsonMappingException), or augment given exception with given path/reference information.Methods in com.fasterxml.jackson.jr.ob that throw JSONObjectException Modifier and Type Method Description protected com.fasterxml.jackson.core.JsonParserJSON. _parser(Object source)Object[]JSON. arrayFrom(Object source)<T> T[]JSON. arrayOfFrom(Class<T> type, Object source)byte[]JSON. asBytes(Object value)StringJSON. asString(Object value)<T> TJSON. beanFrom(Class<T> type, Object source)JSONComposer<byte[]>JSON. composeBytes()JSONComposer<String>JSON. composeString()JSONComposer<OutputStream>JSON. composeTo(File f)JSONComposer<OutputStream>JSON. composeTo(OutputStream out)JSONComposer<OutputStream>JSON. composeTo(Writer w)JSONComposer<OutputStream>JSON. composeUsing(com.fasterxml.jackson.core.JsonGenerator gen)List<Object>JSON. listFrom(Object source)<T> List<T>JSON. listOfFrom(Class<T> type, Object source)<T> Map<T,Object>JSON. mapFrom(Object source)<T extends com.fasterxml.jackson.core.TreeNode>
com.fasterxml.jackson.core.TreeNodeJSON. treeFrom(Object source)Method for reading content as a JSON Tree (of type that configuredTreeCodec, seeJSON.with(TreeCodec)) supports.voidJSON. write(Object value, com.fasterxml.jackson.core.JsonGenerator gen)voidJSON. write(Object value, File f)voidJSON. write(Object value, OutputStream out)voidJSON. write(Object value, Writer w) -
Uses of JSONObjectException in com.fasterxml.jackson.jr.ob.impl
Methods in com.fasterxml.jackson.jr.ob.impl that return JSONObjectException Modifier and Type Method Description protected JSONObjectExceptionJSONAsObjectCodec. _noTypeReference()protected JSONObjectExceptionMapReader. _reportProblem(com.fasterxml.jackson.core.JsonParser p)Methods in com.fasterxml.jackson.jr.ob.impl that throw JSONObjectException Modifier and Type Method Description protected voidJSONAsObjectCodec. _checkResultType(Class<?> valueType, Object ob)protected com.fasterxml.jackson.core.TreeCodecJSONReader. _treeCodec()Map<Object,Object>MapBuilder. emptyMap()Specialized method that is called when an empty list needs to be constructed; this may be a new list, or an immutable shared List, depending on implementation.Map<Object,Object>MapBuilder. singletonMap(Object key, Object value)Specialized method that is called when an empty list needs to be constructed; this may be a new list, or an immutable shared List, depending on implementation.
-