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
Modifier and TypeFieldDescriptionprotected final T
The first Type extendingExpression
.protected final T
The second Type extendingExpression
. -
Constructor Summary
ModifierConstructorDescriptionprotected
Constructor for creating a new AbstractBinaryToDoubleExpression -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods 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
.
-