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

io.nosqlbench.virtdata.lang.ast.Assignment Maven / Gradle / Ivy

There is a newer version: 4.15.102
Show newest version
package io.nosqlbench.virtdata.lang.ast;

public class Assignment {

    private final String variableName;

    public Assignment(String variableName) {
        this.variableName = variableName;
    }

    public String getVariableName() {
        return variableName;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy