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

xuml.tools.model.compiler.runtime.query.StringConstant Maven / Gradle / Ivy

package xuml.tools.model.compiler.runtime.query;

import xuml.tools.model.compiler.runtime.Entity;

public class StringConstant> extends StringExpression {

    private final String value;

    public StringConstant(String value) {
        this.value = value;
    }

    public String getValue() {
        return value;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy