Package Torello.HTML
Class TextNodeIndex
- java.lang.Object
-
- Torello.HTML.NodeIndex
-
- Torello.HTML.TextNodeIndex
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.CharSequence
,java.lang.Cloneable
,java.lang.Comparable<NodeIndex>
public class TextNodeIndex extends NodeIndex implements java.lang.CharSequence, java.io.Serializable, java.lang.Cloneable
TextNodeIndex - Documentation.
TextNodeIndex: TextNode 'plus' the vector-index
* This class has two member fields, listed below:TextNodeIndex.n
is an instance ofTextNode
TextNodeIndex.index
isint integer
, and contains theVector
-index where thisTextNode
resides.
This class is just an extremely simple data-structure-class used, generally, for returning both the index of an instance-node ofclass 'TextNode'
inside a vectorized-html web-page, and also theTextNode
itself -simultaneously. The constructor of this class accepts an index, and aTextNode,
and saves both of these datum aspublic, final
fields of this class. The'Peek'
suite of search methods inpackage NodeSearch
return instances of this class.
STALE DATA NOTE: If a vectorized-html webpage is modified after any of theseNode + Index
classes are created / instantiated, and nodes are added or removed from the webpage, then the (integer) index data inside these classes would have become stale when they are next accessed.
The followingpublic class
definitions incorporateVector
-index andVector
-node-content into a single "combined unit" class:class TagNodeIndex
class TextNodeIndex
class CommentNodeIndex
class NodeIndex
- is abstract, and the parent of the three above.class SubSection
- a sublist of nodes
It is important to remember thatVector
-position (a.k.a. "Vector
-index") information that is stored insideObject
instances of these (extremely-simple) classes will become stale, immediately if nodes are ever added or removed to the underlyingVector
from which theseNode + Index
object-classes are created. This is because the 'index' is just a pointer into theVector
! For data-retrieval operations, these classes can prove highly useful. For page-modification operations, it is better to use theHTML Iterator / HNLI
classes.- See Also:
TextNode
,NodeIndex
,TextNodePeek
, Serialized Form
Hi-Lited Source-Code:
- View Here: Torello/HTML/TextNodeIndex.java
- Open New Browser-Tab: Torello/HTML/TextNodeIndex.java
-
-
Field Summary
Fields Modifier and Type Field static Comparator<TextNodeIndex>
comp2
static Comparator<TextNodeIndex>
comp3
TextNode
n
static long
serialVersionUID
-
Constructor Summary
Constructors Constructor TextNodeIndex(int index, TextNode textNode)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method TextNodeIndex
clone()
-
Methods inherited from class Torello.HTML.NodeIndex
charAt, check, compareTo, equals, hashCode, length, subSequence, toString
-
-
-
-
Field Detail
-
serialVersionUID
public static final long serialVersionUID
This fulfils the SerialVersion UID requirement for all classes that implement Java'sinterface java.io.Serializable
. Using theSerializable
Implementation offered by java is very easy, and can make saving program state when debugging a lot easier. It can also be used in place of more complicated systems like "hibernate" to store data as well.- See Also:
- Constant Field Values
- Code:
- Exact Field Declaration Expression:
1
public static final long serialVersionUID = 1;
-
n
public final TextNode n
ATextNode
node from a web-page. This node is supposed to be the same node stored at the index specified by member-fieldint 'index'
of some vectorized-html web-page in memory or on disk.
IMPORTANT: This field over-rides the parent-class fieldpublic final HTMLNode n
- and it is an instance ofTextNode,
rather thanHTMLNode
- Code:
- Exact Field Declaration Expression:
1
public final TextNode n;
-
comp2
public static final java.util.Comparator<TextNodeIndex> comp2
This is an "alternative Comparitor" that can be used for sorting instances of this class. It should work with theCollections.sort(List, Comparator)
method in the standard JDK packagejava.util.*;
NOTE: This version utilizes the standard JDKString.compareTo(String)
method.- See Also:
HTMLNode.str
- Code:
- Exact Field Declaration Expression:
1 2
public static final Comparator<TextNodeIndex> comp2 = (TextNodeIndex txni1, TextNodeIndex txni2) -> txni1.n.str.compareTo(txni2.n.str);
-
comp3
public static final java.util.Comparator<TextNodeIndex> comp3
This is an "alternative Comparitor" that can be used for sorting instances of this class. It should work with theCollections.sort(List, Comparator)
method in the standard JDK packagejava.util.*;
NOTE: This version utilizes the standard JDKString.compareToIgnoreCase(String)
method.- See Also:
HTMLNode.str
- Code:
- Exact Field Declaration Expression:
1 2
public static final Comparator<TextNodeIndex> comp3 = (TextNodeIndex txni1, TextNodeIndex txni2) -> txni1.n.str.compareToIgnoreCase(txni2.n.str);
-
-
Constructor Detail
-
TextNodeIndex
public TextNodeIndex(int index, TextNode textNode)
Constructor for this class. Some brief/minor error checking is performed before this class is instantiated.- Parameters:
index
- This is the index of vectorized-page that containsHTMLNode 'n'
textNode
- This is theTextNode
being stored in this light-simple data-structure.- Throws:
java.lang.IndexOutOfBoundsException
- if index is negative, this exception is thrown.- Code:
- Exact Constructor Body:
1 2 3
super(index, textNode); NodeIndex.check(index, textNode); this.n = textNode;
-
-
Method Detail
-
clone
public TextNodeIndex clone()
Java'sinterface Cloneable
requirements. This instantiates a newTextNodeIndex
with identicalTextNode n
andint index
fields.- Overrides:
clone
in classjava.lang.Object
- Returns:
- A new
TextNodeIndex
whose internal fields are identical to this one. - Code:
- Exact Method Body:
1
return new TextNodeIndex(this.index, this.n);
-
-