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

org.leialearns.utilities.Expression Maven / Gradle / Ivy

package org.leialearns.utilities;

/**
 * Convenience interface for inline class instances that provide a single value.
 * @param  The type of the value
 */
public interface Expression {

    /**
     * Returns the value of this expression.
     * @return The value of this expression
     */
    public T get();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy