![JAR search and dependency download from the Maven repository](/logo.png)
org.nlab.json.stream.context.token.Token Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-stream Show documentation
Show all versions of json-stream Show documentation
Json Streaming / JsonPath Matcher
package org.nlab.json.stream.context.token;
/**
* Created by nlabrot on 19/04/16.
*/
public interface Token {
Token getChildren();
void setChildren(Token value);
boolean isLiteral();
default boolean isPreInit() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy