package jamel.data; /** * Represents an expression. */ public interface Expression { /** * Returns the numerical value of this expression. * * @return the numerical value of this expression. */ Double getValue(); }