Package org.apache.uima.tools.cvd
Class ArrayNode
- java.lang.Object
-
- org.apache.uima.tools.cvd.FSTreeNode
-
- org.apache.uima.tools.cvd.ArrayNode
-
public class ArrayNode extends FSTreeNode
TODO: add type comment forArrayNode
.
-
-
Constructor Summary
Constructors Constructor Description ArrayNode(int start, int end)
Instantiates a new array node.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) static int
degree(int i)
Degree.int
getEnd()
Gets the end.int
getStart()
Gets the start.protected void
initChildren()
Inits the children.java.lang.String
toString()
-
Methods inherited from class org.apache.uima.tools.cvd.FSTreeNode
getChildCount, getChildren, removeAllChildren, setChildren
-
-
-
-
Field Detail
-
CUTOFF
public static final int CUTOFF
The Constant CUTOFF.- See Also:
- Constant Field Values
-
MULT
public static final int MULT
The Constant MULT.- See Also:
- Constant Field Values
-
start
private int start
The start.
-
end
private int end
The end.
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
initChildren
protected void initChildren()
Description copied from class:FSTreeNode
Inits the children.- Specified by:
initChildren
in classFSTreeNode
-
degree
static int degree(int i)
Degree.- Parameters:
i
- the i- Returns:
- the int
-
getEnd
public int getEnd()
Gets the end.- Returns:
- int
-
getStart
public int getStart()
Gets the start.- Returns:
- int
-
-