Skip navigation links
C G I J N O V 

C

checkDouble(double) - Static method in class net.markenwerk.utils.json.handler.IdleJsonHandler
Checks that a double value is a valid JSON number.
checkName(String) - Static method in class net.markenwerk.utils.json.handler.IdleJsonHandler
Checks that a String value is a valid JSON name.
checkString(String) - Static method in class net.markenwerk.utils.json.handler.IdleJsonHandler
Checks that a String value is a valid JSON string.

G

getResult() - Method in class net.markenwerk.utils.json.handler.IdleJsonHandler
 
getResult() - Method in interface net.markenwerk.utils.json.handler.JsonHandler
Returns the calculated result.

I

IdleJsonHandler<Result> - Class in net.markenwerk.utils.json.handler
An IdleJsonHandler is a JsonHandler with empty methods.
IdleJsonHandler() - Constructor for class net.markenwerk.utils.json.handler.IdleJsonHandler
 

J

JsonException - Exception in net.markenwerk.utils.json.common
A JsonException indicates that a JSON related operation failed.
JsonException(String, Throwable) - Constructor for exception net.markenwerk.utils.json.common.JsonException
Creates a new JsonException with the given message and cause.
JsonException(String) - Constructor for exception net.markenwerk.utils.json.common.JsonException
Creates a new JsonException with the given message.
JsonException(Throwable) - Constructor for exception net.markenwerk.utils.json.common.JsonException
Creates a new JsonException with the given cause.
JsonHandler<Result> - Interface in net.markenwerk.utils.json.handler
A JsonHandler provides a collection of callback methods that can be called for a sequence of events that describe a JSON document.
JsonHandlingException - Exception in net.markenwerk.utils.json.handler
A JsonHandlingException is a JsonProcessingException that indicates that a JsonHandler couldn't handle an event in one of the callback methods.
JsonHandlingException(String, Throwable) - Constructor for exception net.markenwerk.utils.json.handler.JsonHandlingException
Creates a new JsonStateException with the given message and cause.
JsonHandlingException(String) - Constructor for exception net.markenwerk.utils.json.handler.JsonHandlingException
Creates a new JsonStateException with the given message.
JsonHandlingException(Throwable) - Constructor for exception net.markenwerk.utils.json.handler.JsonHandlingException
Creates a new JsonStateException with the given cause.
JsonIndexException - Exception in net.markenwerk.utils.json.common
A JsonIndexException is a JsonException that indicates that a given value is not a valid index for a given JSON structure.
JsonIndexException(String, Throwable) - Constructor for exception net.markenwerk.utils.json.common.JsonIndexException
Creates a new JsonIndexException with the given message and cause.
JsonIndexException(String) - Constructor for exception net.markenwerk.utils.json.common.JsonIndexException
Creates a new JsonIndexException with the given message.
JsonIndexException(Throwable) - Constructor for exception net.markenwerk.utils.json.common.JsonIndexException
Creates a new JsonIndexException with the given cause.
JsonProcessingException - Exception in net.markenwerk.utils.json.common
A JsonProcessingException is a JsonException that indicates that a JSON related operation couldn't be performed.
JsonProcessingException(String, Throwable) - Constructor for exception net.markenwerk.utils.json.common.JsonProcessingException
Creates a new JsonProcessingException with the given message and cause.
JsonProcessingException(String) - Constructor for exception net.markenwerk.utils.json.common.JsonProcessingException
Creates a new JsonProcessingException with the given message.
JsonProcessingException(Throwable) - Constructor for exception net.markenwerk.utils.json.common.JsonProcessingException
Creates a new JsonProcessingException with the given cause.
JsonStateException - Exception in net.markenwerk.utils.json.common
A JsonStateException is a JsonProcessingException that indicates that a JSON related operation couldn't be performed because the JSON related object is not in the correct state for that operation.
JsonStateException(String, Throwable) - Constructor for exception net.markenwerk.utils.json.common.JsonStateException
Creates a new JsonStateException with the given message and cause.
JsonStateException(String) - Constructor for exception net.markenwerk.utils.json.common.JsonStateException
Creates a new JsonStateException with the given message.
JsonStateException(Throwable) - Constructor for exception net.markenwerk.utils.json.common.JsonStateException
Creates a new JsonStateException with the given cause.
JsonValueException - Exception in net.markenwerk.utils.json.common
A JsonValueException is a JsonException that indicates that a JSON value couldn't be processed or failed to fulfill a constraint.
JsonValueException(String, Throwable) - Constructor for exception net.markenwerk.utils.json.common.JsonValueException
Creates a new JsonValueException with the given message and cause.
JsonValueException(String) - Constructor for exception net.markenwerk.utils.json.common.JsonValueException
Creates a new JsonValueException with the given message.
JsonValueException(Throwable) - Constructor for exception net.markenwerk.utils.json.common.JsonValueException
Creates a new JsonValueException with the given cause.

N

net.markenwerk.utils.json.common - package net.markenwerk.utils.json.common
 
net.markenwerk.utils.json.handler - package net.markenwerk.utils.json.handler
 
NullJsonHandler - Class in net.markenwerk.utils.json.handler
A NullJsonHandler is an IdleJsonHandler that does nothing.
NullJsonHandler() - Constructor for class net.markenwerk.utils.json.handler.NullJsonHandler
Creates a new NullJsonHandler

O

onArrayBegin() - Method in class net.markenwerk.utils.json.handler.IdleJsonHandler
 
onArrayBegin() - Method in interface net.markenwerk.utils.json.handler.JsonHandler
Called when the parsing of a JSON array started.
onArrayEnd() - Method in class net.markenwerk.utils.json.handler.IdleJsonHandler
 
onArrayEnd() - Method in interface net.markenwerk.utils.json.handler.JsonHandler
Called when the parsing of a JSON array ended.
onBoolean(boolean) - Method in class net.markenwerk.utils.json.handler.IdleJsonHandler
 
onBoolean(boolean) - Method in interface net.markenwerk.utils.json.handler.JsonHandler
Called when the parsing of a JSON object encountered a JSON boolean.
onDocumentBegin() - Method in class net.markenwerk.utils.json.handler.IdleJsonHandler
 
onDocumentBegin() - Method in interface net.markenwerk.utils.json.handler.JsonHandler
Called when the parsing of a JSON document started.
onDocumentEnd() - Method in class net.markenwerk.utils.json.handler.IdleJsonHandler
 
onDocumentEnd() - Method in interface net.markenwerk.utils.json.handler.JsonHandler
Called when the parsing of a JSON document ended.
onDouble(double) - Method in class net.markenwerk.utils.json.handler.IdleJsonHandler
 
onDouble(double) - Method in interface net.markenwerk.utils.json.handler.JsonHandler
Called when the parsing of a JSON object encountered a JSON number, that represents a decimal value.
onLong(long) - Method in class net.markenwerk.utils.json.handler.IdleJsonHandler
 
onLong(long) - Method in interface net.markenwerk.utils.json.handler.JsonHandler
Called when the parsing of a JSON object encountered a JSON number, that represents an integer value.
onName(String) - Method in class net.markenwerk.utils.json.handler.IdleJsonHandler
 
onName(String) - Method in interface net.markenwerk.utils.json.handler.JsonHandler
Called when the parsing of a JSON object encountered the name for the next JSON value.
onNext() - Method in class net.markenwerk.utils.json.handler.IdleJsonHandler
 
onNext() - Method in interface net.markenwerk.utils.json.handler.JsonHandler
Called when the parsing of a JSON array or JSON object encountered another element.
onNull() - Method in class net.markenwerk.utils.json.handler.IdleJsonHandler
 
onNull() - Method in interface net.markenwerk.utils.json.handler.JsonHandler
Called when the parsing of a JSON object encountered a JSON null.
onObjectBegin() - Method in class net.markenwerk.utils.json.handler.IdleJsonHandler
 
onObjectBegin() - Method in interface net.markenwerk.utils.json.handler.JsonHandler
Called when the parsing of a JSON object started.
onObjectEnd() - Method in class net.markenwerk.utils.json.handler.IdleJsonHandler
 
onObjectEnd() - Method in interface net.markenwerk.utils.json.handler.JsonHandler
Called when the parsing of a JSON object ended.
onString(String) - Method in class net.markenwerk.utils.json.handler.IdleJsonHandler
 
onString(String) - Method in interface net.markenwerk.utils.json.handler.JsonHandler
Called when the parsing of a JSON object encountered a JSON string.

V

VacantJsonIndexException - Exception in net.markenwerk.utils.json.common
A VacantJsonIndexException is a JsonValueException indicates that a JSON structure has no JSON value for a given index.
VacantJsonIndexException(String, Throwable) - Constructor for exception net.markenwerk.utils.json.common.VacantJsonIndexException
Creates a new VacantJsonIndexException with the given message and cause.
VacantJsonIndexException(String) - Constructor for exception net.markenwerk.utils.json.common.VacantJsonIndexException
Creates a new VacantJsonIndexException with the given message.
VacantJsonIndexException(Throwable) - Constructor for exception net.markenwerk.utils.json.common.VacantJsonIndexException
Creates a new VacantJsonIndexException with the given cause.
C G I J N O V 
Skip navigation links

Copyright © 2016–2017 Markenwerk – Gesellschaft für markenbildende Maßnahmen mbH. All rights reserved.