public class BinaryNode<E>
extends java.lang.Object
The types are
DOUBLE: a double (a number)
VARIABLE: a variable
CONSTANT: a constant
OPERATOR: an operator
FUNCTION: a function
value: The value of the element
Modified 11/14/04, 4/4/06, 3/10/08, 3/21/08,
| Modifier and Type | Field and Description |
|---|---|
static int |
CONSTANT
The type is a constant
|
static int |
DOUBLE
The type is a double
|
static int |
FUNCTION
The type is a function
|
static int |
OPERATOR
The type is an operator
|
static int |
VARIABLE
The type is a variable
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString()
Returns a String with the data as the value of the binary node
|
public static final int DOUBLE
public static final int VARIABLE
public static final int CONSTANT
public static final int OPERATOR
public static final int FUNCTION