A B C D E F G H I J N O P R T V

A

append(String) - Method in class com.github.fge.jackson.jsonpointer.JsonPointer
Return a new pointer with a new token appended
append(int) - Method in class com.github.fge.jackson.jsonpointer.JsonPointer
Return a new pointer with a new integer token appended
append(JsonPointer) - Method in class com.github.fge.jackson.jsonpointer.JsonPointer
Return a new pointer with another pointer appended
asMap(JsonNode) - Static method in class com.github.fge.jackson.JacksonUtils
Return a map out of an object's members

B

BUNDLE - Static variable in class com.github.fge.jackson.jsonpointer.TreePointer
 

C

com.github.fge.jackson - package com.github.fge.jackson
Jackson utility classes
com.github.fge.jackson.jsonpointer - package com.github.fge.jackson.jsonpointer
JSON Pointer related classes

D

doEquivalent(JsonNode, JsonNode) - Method in class com.github.fge.jackson.JsonNumEquals
 
doHash(JsonNode) - Method in class com.github.fge.jackson.JsonNumEquals
 

E

empty() - Static method in class com.github.fge.jackson.jsonpointer.JsonPointer
Return an empty JSON Pointer
equals(Object) - Method in class com.github.fge.jackson.jsonpointer.ReferenceToken
 
equals(Object) - Method in class com.github.fge.jackson.jsonpointer.TokenResolver
 
equals(Object) - Method in class com.github.fge.jackson.jsonpointer.TreePointer
 

F

fromCooked(String) - Static method in class com.github.fge.jackson.jsonpointer.ReferenceToken
Generate a reference token from an encoded (cooked) representation
fromFile(File) - Static method in class com.github.fge.jackson.JsonLoader
Same as JsonLoader.fromPath(String), but this time the user supplies the File object instead
fromInputStream(InputStream) - Method in class com.github.fge.jackson.JsonNodeReader
Read a JSON value from an InputStream
fromInt(int) - Static method in class com.github.fge.jackson.jsonpointer.ReferenceToken
Generate a reference token from an integer
fromName(String) - Static method in enum com.github.fge.jackson.NodeType
Given a type name, return the corresponding node type
fromPath(String) - Static method in class com.github.fge.jackson.JsonLoader
Read a JsonNode from a file on the local filesystem.
fromRaw(String) - Static method in class com.github.fge.jackson.jsonpointer.ReferenceToken
Generate a reference token from a decoded (raw) representation
fromReader(Reader) - Static method in class com.github.fge.jackson.JsonLoader
Read a JsonNode from a user supplied Reader
fromReader(Reader) - Method in class com.github.fge.jackson.JsonNodeReader
Read a JSON value from a Reader
fromResource(String) - Static method in class com.github.fge.jackson.JsonLoader
Read a JsonNode from a resource path.
fromString(String) - Static method in class com.github.fge.jackson.JsonLoader
Read a JsonNode from a string input
fromURL(URL) - Static method in class com.github.fge.jackson.JsonLoader
Read a JsonNode from an URL.

G

get(JsonNode) - Method in class com.github.fge.jackson.jsonpointer.JsonNodeResolver
 
get(T) - Method in class com.github.fge.jackson.jsonpointer.TokenResolver
Advance one level into the tree
get(T) - Method in class com.github.fge.jackson.jsonpointer.TreePointer
Traverse a node and return the result
getBundle() - Method in class com.github.fge.jackson.jsonpointer.JsonPointerMessages
 
getInstance() - Static method in class com.github.fge.jackson.JsonNumEquals
 
getNodeType(JsonNode) - Static method in enum com.github.fge.jackson.NodeType
Given a JsonNode as an argument, return its type.
getRaw() - Method in class com.github.fge.jackson.jsonpointer.ReferenceToken
Get the raw representation of that token as a string
getReader() - Static method in class com.github.fge.jackson.JacksonUtils
Return a preconfigured ObjectReader to read JSON inputs
getToken() - Method in class com.github.fge.jackson.jsonpointer.TokenResolver
 

H

hashCode() - Method in class com.github.fge.jackson.jsonpointer.ReferenceToken
 
hashCode() - Method in class com.github.fge.jackson.jsonpointer.TokenResolver
 
hashCode() - Method in class com.github.fge.jackson.jsonpointer.TreePointer
 

I

isEmpty() - Method in class com.github.fge.jackson.jsonpointer.TreePointer
Tell whether this pointer is empty
iterator() - Method in class com.github.fge.jackson.jsonpointer.TreePointer
 

J

JacksonUtils - Class in com.github.fge.jackson
Utility class for Jackson
JsonLoader - Class in com.github.fge.jackson
Utility class to load JSON values from various sources as JsonNodes.
JsonNodeReader - Class in com.github.fge.jackson
Class dedicated to reading JSON values from InputStreams and Readers
JsonNodeReader(ObjectMapper) - Constructor for class com.github.fge.jackson.JsonNodeReader
 
JsonNodeReader() - Constructor for class com.github.fge.jackson.JsonNodeReader
No-arg constructor (see description)
JsonNodeResolver - Class in com.github.fge.jackson.jsonpointer
Implementation of TokenResolver for JsonNode
JsonNodeResolver(ReferenceToken) - Constructor for class com.github.fge.jackson.jsonpointer.JsonNodeResolver
 
JsonNumEquals - Class in com.github.fge.jackson
An Equivalence strategy for JSON Schema equality
JsonPointer - Class in com.github.fge.jackson.jsonpointer
A TreePointer for JsonNode
JsonPointer(String) - Constructor for class com.github.fge.jackson.jsonpointer.JsonPointer
The main constructor
JsonPointer(List<TokenResolver<JsonNode>>) - Constructor for class com.github.fge.jackson.jsonpointer.JsonPointer
Alternate constructor
JsonPointerException - Exception in com.github.fge.jackson.jsonpointer
 
JsonPointerException(String) - Constructor for exception com.github.fge.jackson.jsonpointer.JsonPointerException
 
JsonPointerMessages - Class in com.github.fge.jackson.jsonpointer
 
JsonPointerMessages() - Constructor for class com.github.fge.jackson.jsonpointer.JsonPointerMessages
 

N

newMapper() - Static method in class com.github.fge.jackson.JacksonUtils
Return a preconfigured ObjectMapper
nodeFactory() - Static method in class com.github.fge.jackson.JacksonUtils
Return a preconfigured JsonNodeFactory to generate JSON data as JsonNodes
NodeType - Enum in com.github.fge.jackson
Enumeration for the different types of JSON instances which can be encountered.

O

of(Object, Object...) - Static method in class com.github.fge.jackson.jsonpointer.JsonPointer
Build a JSON Pointer out of a series of reference tokens

P

parent() - Method in class com.github.fge.jackson.jsonpointer.JsonPointer
Return the immediate parent of this JSON Pointer
path(T) - Method in class com.github.fge.jackson.jsonpointer.TreePointer
Traverse a node and return the result
prettyPrint(JsonNode) - Static method in class com.github.fge.jackson.JacksonUtils
Pretty print a JSON value

R

ReferenceToken - Class in com.github.fge.jackson.jsonpointer
One JSON Pointer reference token

T

token - Variable in class com.github.fge.jackson.jsonpointer.TokenResolver
The associated reference token
TokenResolver<T extends com.fasterxml.jackson.core.TreeNode> - Class in com.github.fge.jackson.jsonpointer
Reference token traversal class
TokenResolver(ReferenceToken) - Constructor for class com.github.fge.jackson.jsonpointer.TokenResolver
The only constructor
tokenResolvers - Variable in class com.github.fge.jackson.jsonpointer.TreePointer
The list of token resolvers
tokensFromInput(String) - Static method in class com.github.fge.jackson.jsonpointer.TreePointer
Decode an input into a list of reference tokens
toString() - Method in class com.github.fge.jackson.jsonpointer.ReferenceToken
 
toString() - Method in class com.github.fge.jackson.jsonpointer.TokenResolver
 
toString() - Method in class com.github.fge.jackson.jsonpointer.TreePointer
 
toString() - Method in enum com.github.fge.jackson.NodeType
 
TreePointer<T extends com.fasterxml.jackson.core.TreeNode> - Class in com.github.fge.jackson.jsonpointer
A pointer into a TreeNode
TreePointer(T, List<TokenResolver<T>>) - Constructor for class com.github.fge.jackson.jsonpointer.TreePointer
Main protected constructor
TreePointer(List<TokenResolver<T>>) - Constructor for class com.github.fge.jackson.jsonpointer.TreePointer
Alternate constructor

V

valueOf(String) - Static method in enum com.github.fge.jackson.NodeType
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.github.fge.jackson.NodeType
Returns an array containing the constants of this enum type, in the order they are declared.

A B C D E F G H I J N O P R T V