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

org.cqframework.cql.cql2elm.model.InstantiationResult Maven / Gradle / Ivy

Go to download

The cql-to-elm library for the Clinical Quality Language Java reference implementation

There is a newer version: 3.18.0
Show newest version
package org.cqframework.cql.cql2elm.model;

/**
 * Created by Bryn on 12/22/2016.
 */
public class InstantiationResult {
    public InstantiationResult(GenericOperator genericOperator, Operator operator, int conversionScore) {
        if (genericOperator == null) {
            throw new IllegalArgumentException("genericOperator is required");
        }

        this.genericOperator = genericOperator;
        this.operator = operator;
        this.conversionScore = conversionScore;
    }

    private GenericOperator genericOperator;

    public GenericOperator getGenericOperator() {
        return genericOperator;
    }

    private Operator operator;

    public Operator getOperator() {
        return operator;
    }

    private int conversionScore;

    public int getConversionScore() {
        return conversionScore;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy