Class ValueLiteral

java.lang.Object
net.thisptr.jackson.jq.internal.tree.literal.ValueLiteral
All Implemented Interfaces:
Expression
Direct Known Subclasses:
BooleanLiteral, DoubleLiteral, LongLiteral, NullLiteral, StringLiteral

public abstract class ValueLiteral extends Object implements Expression
  • Field Summary

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

    Constructors
    Constructor
    Description
    ValueLiteral(com.fasterxml.jackson.databind.JsonNode value)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    apply(Scope scope, com.fasterxml.jackson.databind.JsonNode in, Path ipath, PathOutput output, boolean requirePath)
     
     
    com.fasterxml.jackson.databind.JsonNode
     

    Methods inherited from class java.lang.Object

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

    Methods inherited from interface net.thisptr.jackson.jq.Expression

    apply
  • Field Details

    • value

      private com.fasterxml.jackson.databind.JsonNode value
  • Constructor Details

    • ValueLiteral

      public ValueLiteral(com.fasterxml.jackson.databind.JsonNode value)
  • Method Details