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

org.geolatte.common.cql.node.TLessThanOrEqualsOperator Maven / Gradle / Ivy

Go to download

This GeoLatte-common library contains the transformer framework and other common classes used by other GeoLatte modules.

There is a newer version: 0.8
Show newest version
/* This file was generated by SableCC (http://www.sablecc.org/). */

package org.geolatte.common.cql.node;

import org.geolatte.common.cql.analysis.*;

@SuppressWarnings("nls")
public final class TLessThanOrEqualsOperator extends Token
{
    public TLessThanOrEqualsOperator()
    {
        super.setText("<=");
    }

    public TLessThanOrEqualsOperator(int line, int pos)
    {
        super.setText("<=");
        setLine(line);
        setPos(pos);
    }

    @Override
    public Object clone()
    {
      return new TLessThanOrEqualsOperator(getLine(), getPos());
    }

    public void apply(Switch sw)
    {
        ((Analysis) sw).caseTLessThanOrEqualsOperator(this);
    }

    @Override
    public void setText(@SuppressWarnings("unused") String text)
    {
        throw new RuntimeException("Cannot change TLessThanOrEqualsOperator text.");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy