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

org.opencds.cqf.cql.execution.EvaluationResult Maven / Gradle / Ivy

package org.opencds.cqf.cql.execution;

import java.util.HashMap;
import java.util.Map;

import org.cqframework.cql.elm.execution.VersionedIdentifier;

public class EvaluationResult {

    public Map libraryResults;

    public EvaluationResult() {
        this.libraryResults = new HashMap<>();
    }

    public LibraryResult forLibrary(VersionedIdentifier libraryIdentifier) {
        return this.libraryResults.get(libraryIdentifier);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy