Class ArrayRangeIndexPath

java.lang.Object
net.thisptr.jackson.jq.path.ArrayRangeIndexPath
All Implemented Interfaces:
Path

public class ArrayRangeIndexPath extends Object implements Path
Despite the name, ArrayRangeIndexPath can be used to index strings.
  • Nested Class Summary

    Nested classes/interfaces inherited from interface net.thisptr.jackson.jq.path.Path

    Path.Mutation
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final com.fasterxml.jackson.databind.JsonNode
     
    private static final com.fasterxml.jackson.databind.ObjectMapper
     
    private final Path
     
    final com.fasterxml.jackson.databind.JsonNode
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    ArrayRangeIndexPath(Path parent, com.fasterxml.jackson.databind.JsonNode start, com.fasterxml.jackson.databind.JsonNode end)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    chainIfNotNull(Path parent, com.fasterxml.jackson.databind.JsonNode start, com.fasterxml.jackson.databind.JsonNode end)
     
    void
    get(com.fasterxml.jackson.databind.JsonNode in, Path ipath, PathOutput output, boolean permissive)
     
    private static com.fasterxml.jackson.databind.JsonNode
    mutate(com.fasterxml.jackson.databind.JsonNode in, com.fasterxml.jackson.databind.JsonNode start, com.fasterxml.jackson.databind.JsonNode end, Path.Mutation mutation)
     
    com.fasterxml.jackson.databind.JsonNode
    mutate(com.fasterxml.jackson.databind.JsonNode in, Path.Mutation mutation, boolean makeParent)
     
    static void
    resolve(com.fasterxml.jackson.databind.JsonNode pobj, Path ppath, PathOutput output, com.fasterxml.jackson.databind.JsonNode start, com.fasterxml.jackson.databind.JsonNode end, boolean permissive)
     
    void
    toJsonNode(com.fasterxml.jackson.databind.node.ArrayNode out)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface net.thisptr.jackson.jq.path.Path

    mutate
  • Field Details

    • MAPPER

      private static final com.fasterxml.jackson.databind.ObjectMapper MAPPER
    • start

      public final com.fasterxml.jackson.databind.JsonNode start
    • end

      public final com.fasterxml.jackson.databind.JsonNode end
    • parent

      private final Path parent
  • Constructor Details

    • ArrayRangeIndexPath

      public ArrayRangeIndexPath(Path parent, com.fasterxml.jackson.databind.JsonNode start, com.fasterxml.jackson.databind.JsonNode end)
  • Method Details