Package com.github.tnakamot.json.pointer
This package provides classes for JSON Pointer (RFC
6901).
- See Also:
- RFC 6901
-
Class Summary Class Description JSONPointer JSON Pointer implementation compliant with RFC 6901.JSONPointerLexer An implementation of lexical analyzer for JSON Pointer.JSONPointerReferenceToken Represents one reference token of a JSON Pointer. -
Exception Summary Exception Description InvalidJSONPointerException InvalidJSONPointerIndexOutOfBoundsException Thrown when the index in the JSON Pointer is out of bounds of the JSON array value.InvalidJSONPointerMemberNotExistException Thrown when a member with the specified name does not exist.InvalidJSONPointerNotIndexException Thrown when a reference token does not represent an index of a JSON arrayInvalidJSONPointerReachedPrimitiveException Thrown when a JSON Pointer reaches a primitive JSON value (null, boolean, string or number), but it references a child of that value.InvalidJSONPointerSyntaxException Thrown when the given pointer String violates syntax defined in RFC 6901.InvalidJSONPointerWithTokenException Thrown when evaluation of a JSON Pointer encounters an error.