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

be.ugent.rml.TemplateElement Maven / Gradle / Ivy

package be.ugent.rml;

public class TemplateElement {

    private String value;
    private TEMPLATETYPE type;

    public TemplateElement(String value, TEMPLATETYPE type) {
        this.value = value;
        this.type = type;
    }

    public String getValue() {
        return value;
    }

    public TEMPLATETYPE getType() {
        return type;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy