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

examplecalculator.objectmodel.Element Maven / Gradle / Ivy

The newest version!
package examplecalculator.objectmodel;

public interface Element {
    T getValue();

    String getElement();

    void setValue(T value);

    void setElement(String element);

    TypeElement getTypeElement();

    enum TypeElement {
        SIGN,
        NUMBER,
        FUNCTION,
        BRACKET,
        FACTORIAL
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy