jaxcent
Class RelationType

java.lang.Object
  extended byjaxcent.RelationType

public class RelationType
extends java.lang.Object

RelationType is a (backwards compatible) enumeration class. It provides options for searching for HTML tag elements on the page using node relations such as "next sibling", "previous sibling". These are not available for all searches, but are only provided in a limited fashion, therefore the SearchType class doesn't include these.


Field Summary
static RelationType firstChild
          Find first child node (of a parent node.)
static RelationType lastChild
          Find last child node (of a parent node.)
static RelationType nextSibling
          Find next sibling node.
static RelationType parentNode
          Find parent node.
static RelationType previousSibling
          Find previous sibling node.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

nextSibling

public static RelationType nextSibling
Find next sibling node.


previousSibling

public static RelationType previousSibling
Find previous sibling node.


parentNode

public static RelationType parentNode
Find parent node.


firstChild

public static RelationType firstChild
Find first child node (of a parent node.)


lastChild

public static RelationType lastChild
Find last child node (of a parent node.)