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

com.nhl.link.move.runtime.json.query.Token Maven / Gradle / Ivy

package com.nhl.link.move.runtime.json.query;

class Token {

    private TokenType type;
    private String literal;
    private int position;

    Token(TokenType type, String literal, int position) {
        this.type = type;
        this.literal = literal;
        this.position = position;
    }

    TokenType getType() {
        return type;
    }

    String getLiteral() {
        return literal;
    }

    int getPosition() {
        return position;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy