public class FunctionNode extends ASTNode implements List<ASTNode>
ASTNode's which represents a parsed function.fStringValue| Constructor and Description |
|---|
FunctionNode(ASTNode head) |
FunctionNode(SymbolNode head,
ASTNode arg0) |
FunctionNode(SymbolNode head,
ASTNode arg0,
ASTNode arg1) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(ASTNode node)
Appends the node to the end of this list.
|
void |
add(int index,
ASTNode element) |
boolean |
addAll(Collection<? extends ASTNode> c) |
boolean |
addAll(int index,
Collection<? extends ASTNode> c) |
void |
clear() |
boolean |
contains(Object o) |
boolean |
containsAll(Collection<?> c) |
void |
ensureCapacity(int minCapacity) |
boolean |
equals(Object o) |
ASTNode |
get(int index)
Returns the node at the specified position in this list.
|
int |
hashCode() |
int |
indexOf(Object o) |
boolean |
isEmpty() |
Iterator<ASTNode> |
iterator() |
int |
lastIndexOf(Object o) |
ListIterator<ASTNode> |
listIterator() |
ListIterator<ASTNode> |
listIterator(int index) |
ASTNode |
remove(int index) |
boolean |
remove(Object o) |
boolean |
removeAll(Collection<?> c) |
boolean |
retainAll(Collection<?> c) |
ASTNode |
set(int index,
ASTNode element) |
int |
size() |
List<ASTNode> |
subList(int fromIndex,
int toIndex) |
Object[] |
toArray() |
<T> T[] |
toArray(T[] a) |
String |
toString() |
void |
trimToSize() |
dependsOn, derivative, getStringclone, finalize, getClass, notify, notifyAll, wait, wait, waitreplaceAll, sort, spliteratorparallelStream, removeIf, streampublic FunctionNode(ASTNode head)
public FunctionNode(SymbolNode head, ASTNode arg0)
public FunctionNode(SymbolNode head, ASTNode arg0, ASTNode arg1)
public boolean add(ASTNode node)
add in interface Collection<ASTNode>add in interface List<ASTNode>node - element to be appended to this listCollection.add(E))public boolean addAll(Collection<? extends ASTNode> c)
public boolean addAll(int index,
Collection<? extends ASTNode> c)
public void clear()
public boolean contains(Object o)
public boolean containsAll(Collection<?> c)
containsAll in interface Collection<ASTNode>containsAll in interface List<ASTNode>public void ensureCapacity(int minCapacity)
public boolean equals(Object o)
public ASTNode get(int index)
get in interface List<ASTNode>index - index of the ASTNode to returnIndexOutOfBoundsExceptionpublic int hashCode()
public boolean isEmpty()
public int lastIndexOf(Object o)
lastIndexOf in interface List<ASTNode>public ListIterator<ASTNode> listIterator()
listIterator in interface List<ASTNode>public ListIterator<ASTNode> listIterator(int index)
listIterator in interface List<ASTNode>public boolean remove(Object o)
public boolean removeAll(Collection<?> c)
public boolean retainAll(Collection<?> c)
public int size()
public Object[] toArray()
public <T> T[] toArray(T[] a)
public void trimToSize()
Copyright © 2017 Java Wikipedia API (Bliki engine). All rights reserved.