public abstract class Tree extends Object implements Serializable
Modifier and Type | Field and Description |
---|---|
int |
line |
static int |
line_number |
static boolean |
parsed |
int |
position |
static int |
position_number |
Constructor and Description |
---|
Tree() |
Modifier and Type | Method and Description |
---|---|
static String |
add(String s) |
double |
doubleValue() |
abstract boolean |
equals(Tree e) |
boolean |
is_double() |
boolean |
is_long() |
boolean |
is_node() |
boolean |
is_string() |
boolean |
is_variable() |
long |
longValue() |
static Tree |
parse(String s) |
abstract String |
pretty(int position) |
protected abstract int |
size() |
String |
stringValue() |
abstract String |
toString() |
String |
variableValue() |
public static int line_number
public static int position_number
public static boolean parsed
public int line
public int position
public abstract boolean equals(Tree e)
public final boolean is_node()
public final boolean is_variable()
public final boolean is_long()
public final boolean is_string()
public final boolean is_double()
public final String variableValue()
public final long longValue()
public final String stringValue()
public final double doubleValue()
protected abstract int size()
public abstract String pretty(int position)
Copyright © 2013-2015 The Apache Software Foundation. All Rights Reserved.