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

org.opencds.cqf.cql.engine.execution.Variable Maven / Gradle / Ivy

Go to download

The engine library for the Clinical Quality Language Java reference implementation

There is a newer version: 3.18.0
Show newest version
package org.opencds.cqf.cql.engine.execution;

public class Variable {
    private String name;
    private Object value;
    // for AliasEvaluator
    private boolean isList;

    public void setIsList (boolean isList) {
        this.isList = isList;
    }

    public boolean isList () {
        return this.isList;
    }

    public String getName() {
        return name;
    }

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

    public Variable withName(String name) {
        setName(name);
        return this;
    }

    public Object getValue() {
        return value;
    }

    public void setValue(Object value) {
        this.value = value;
    }

    public Variable withValue(Object value) {
        setValue(value);
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy