![JAR search and dependency download from the Maven repository](/logo.png)
org.nlab.json.stream.context.token.IntToken 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 class IntToken extends LiteralToken {
private final int value;
public IntToken(int f) {
value = f;
}
public Token getChildren() {
return null;
}
public void setChildren(Token elem) {
throw new RuntimeException();
}
@Override
public Integer getLiteral() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy