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

io.shmilyhe.convert.ast.expression.Identifier Maven / Gradle / Ivy

package io.shmilyhe.convert.ast.expression;

public class Identifier extends Expression {

    public Identifier(){

    }

    public Identifier(String name){
        this.name=name;
    }

    @Override
    public String getType() {
        return TYPE_ID;
    }

    protected String name;

    public String getName() {
        return name;
    }

    public Identifier setName(String name) {
        this.name = name;
        return this;
    }

    
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy