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

se.cambio.cds.gdl.model.expression.Constant Maven / Gradle / Ivy

There is a newer version: 1.3.26
Show newest version
package se.cambio.cds.gdl.model.expression;

public enum Constant {
    E("e", "A mathematical constant that is the base of the natural logarithm");

    private String name;
    private String description;

    Constant(String name, String description) {
        this.name = name;
        this.description = description;
    }

    @Override
    public String toString() {
        return this.name;
    }

    public String description() {
        return this.description;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy