All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.nfeld.jsonpathkt.tokens.Token.kt Maven / Gradle / Ivy

package com.nfeld.jsonpathkt.tokens

import com.nfeld.jsonpathkt.json.JsonNode

@PublishedApi
internal interface Token {
  /**
   * Takes in JsonElement and outputs next JsonElement or value by evaluating token against current object/array in path
   */
  fun read(node: JsonNode): JsonNode?
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy