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

org.nlab.json.stream.context.token.IntToken Maven / Gradle / Ivy

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 - 2024 Weber Informatics LLC | Privacy Policy