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.api 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 JSONObjectException
JSONObjectException. from(com.fasterxml.jackson.core.JsonParser p, java.lang.String msg)
static JSONObjectException
JSONObjectException. from(com.fasterxml.jackson.core.JsonParser p, java.lang.String msg, java.lang.Object... args)
static JSONObjectException
JSONObjectException. from(com.fasterxml.jackson.core.JsonParser p, java.lang.Throwable problem, java.lang.String msg, java.lang.Object... args)
static JSONObjectException
JSONObjectException. fromUnexpectedIOE(java.io.IOException src)
Factory method used when "upgrading" anIOException
intoJSONObjectException
: usually only needed to comply with a signature.static JSONObjectException
JSONObjectException. wrapWithPath(java.lang.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 JSONObjectException
JSONObjectException. wrapWithPath(java.lang.Throwable src, java.lang.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 JSONObjectException
JSONObjectException. wrapWithPath(java.lang.Throwable src, java.lang.Object refFrom, java.lang.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 with parameters of type JSONObjectException Modifier and Type Method Description protected <R> R
ValueIterator. _handleMappingException(JSONObjectException e)
Methods in com.fasterxml.jackson.jr.ob that throw JSONObjectException Modifier and Type Method Description protected com.fasterxml.jackson.core.JsonParser
JSON. _parser(java.lang.Object source)
ValueIterator<java.lang.Object>
JSON. anySequenceFrom(java.lang.Object source)
Method for creatingValueIterator
for reading streaming JSON content (specifically line-delimited and concatenated variants); individual values are bound as "Simple" type:Map
,List
,String
,Number
orBoolean
.java.lang.Object[]
JSON. arrayFrom(java.lang.Object source)
<T> T[]
JSON. arrayOfFrom(java.lang.Class<T> type, java.lang.Object source)
byte[]
JSON. asBytes(java.lang.Object value)
java.lang.String
JSON. asString(java.lang.Object value)
<T> T
JSON. beanFrom(java.lang.Class<T> type, java.lang.Object source)
<T> ValueIterator<T>
JSON. beanSequenceFrom(java.lang.Class<T> type, java.lang.Object source)
Method for creatingValueIterator
for reading streaming JSON content (specifically line-delimited and concatenated variants); individual values are bound to specific Bean (POJO) type.JSONComposer<byte[]>
JSON. composeBytes()
JSONComposer<java.lang.String>
JSON. composeString()
JSONComposer<java.io.OutputStream>
JSON. composeTo(java.io.File f)
JSONComposer<java.io.OutputStream>
JSON. composeTo(java.io.OutputStream out)
JSONComposer<java.io.OutputStream>
JSON. composeTo(java.io.Writer w)
JSONComposer<java.io.OutputStream>
JSON. composeUsing(com.fasterxml.jackson.core.JsonGenerator gen)
com.fasterxml.jackson.core.JsonParser
JSON. createParser(java.lang.Object source)
Factory method for opening aJsonParser
to read content from one of following supported sourcesInputStream
Reader
byte[]
char[]
String
/CharSequence
URL
File
java.util.List<java.lang.Object>
JSON. listFrom(java.lang.Object source)
<T> java.util.List<T>
JSON. listOfFrom(java.lang.Class<T> type, java.lang.Object source)
java.util.Map<java.lang.String,java.lang.Object>
JSON. mapFrom(java.lang.Object source)
<T> java.util.Map<java.lang.String,T>
JSON. mapOfFrom(java.lang.Class<T> type, java.lang.Object source)
Read method for reading aMap
oftype
(usually POJO) values.<T extends com.fasterxml.jackson.core.TreeNode>
TJSON. treeFrom(java.lang.Object source)
Method for reading content as a JSON Tree (of type that configuredTreeCodec
, seeJSON.with(TreeCodec)
) supports.<T extends com.fasterxml.jackson.core.TreeNode>
ValueIterator<T>JSON. treeSequenceFrom(java.lang.Object source)
Method for creatingValueIterator
for reading streaming JSON content (specifically line-delimited and concatenated variants); individual values are bound as JSON Trees(of type that configuredTreeCodec
, seeJSON.with(TreeCodec)
) supports.void
JSON. write(java.lang.Object value, com.fasterxml.jackson.core.JsonGenerator gen)
void
JSON. write(java.lang.Object value, java.io.File f)
void
JSON. write(java.lang.Object value, java.io.OutputStream out)
void
JSON. write(java.lang.Object value, java.io.Writer w)
-
Uses of JSONObjectException in com.fasterxml.jackson.jr.ob.api
Methods in com.fasterxml.jackson.jr.ob.api that throw JSONObjectException Modifier and Type Method Description java.util.Map<java.lang.String,java.lang.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.java.util.Map<java.lang.String,java.lang.Object>
MapBuilder. singletonMap(java.lang.String key, java.lang.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. -
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 JSONObjectException
JSONAsObjectCodec. _noTypeReference()
protected JSONObjectException
MapReader. _reportProblem(com.fasterxml.jackson.core.JsonParser p)
Methods in com.fasterxml.jackson.jr.ob.impl that throw JSONObjectException Modifier and Type Method Description protected void
JSONAsObjectCodec. _checkResultType(java.lang.Class<?> valueType, java.lang.Object ob)
-