
org.nlab.json.stream.context.token.RootToken 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
The newest version!
package org.nlab.json.stream.context.token;
/**
* Created by nlabrot on 19/04/16.
*/
public class RootToken implements Token {
private Token value;
@Override
public Token getChildren() {
return value;
}
@Override
public void setChildren(Token value) {
this.value = value;
}
@Override
public boolean isLiteral() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy