Class AbstractBinaryToDoubleExpression<T extends Expression>
java.lang.Object
ch.andre601.expressionparser.expressions.abstracted.AbstractBinaryToDoubleExpression<T>
- Type Parameters:
T- Type extendingExpression.
- All Implemented Interfaces:
Expression,ToDoubleExpression
public abstract class AbstractBinaryToDoubleExpression<T extends Expression>
extends Object
implements ToDoubleExpression
Abstract class implementing the
Its intended purpose is to accept two
ToDoubleExpression interface.Its intended purpose is to accept two
Expression extending objects to create a ToDoubleExpression from.-
Nested Class Summary
Nested classes/interfaces inherited from interface ch.andre601.expressionparser.expressions.ToDoubleExpression
ToDoubleExpression.ConstantToDoubleExpression -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final TThe first Type extendingExpression.protected final TThe second Type extendingExpression. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedConstructor for creating a new AbstractBinaryToDoubleExpression -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface ch.andre601.expressionparser.expressions.ToDoubleExpression
evaluate
-
Field Details
-
a
The first Type extendingExpression. -
b
The second Type extendingExpression.
-
-
Constructor Details
-
AbstractBinaryToDoubleExpression
Constructor for creating a new AbstractBinaryToDoubleExpression- Parameters:
a- The first Type extendingExpression.b- The second Type extendingExpression.
-