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

org.nustaq.reallive.query.QToken Maven / Gradle / Ivy

There is a newer version: 5.2.1
Show newest version
package org.nustaq.reallive.query;

import java.io.Serializable;

public class QToken implements Serializable {

    String value;
    String query;
    int pos;

    public String getValue() {
        return value;
    }

    public QToken(String value, String query, int pos) {
        this.value = value;
        this.query = query;
        this.pos = pos;
    }

    public String getQuery() {
        return query;
    }

    public int getPos() {
        return pos;
    }

    public String toErrorString() {
        String posEmpty = "";
        for ( int i = 0; i < pos; i++ )
            posEmpty+=" ";
        return "\n"+query+"\n"+posEmpty+"=====";
    }

    public String toString() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy