|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object sk.baka.ikslibs.stax.DOMEventWalker.State
public static final class DOMEventWalker.State
Represents an immutable state of the walker.
Field Summary | |
---|---|
boolean |
isNodeEnd
If node is an element node and this property is
true then report the node as the end-element event. |
Node |
node
The node instance. |
Method Summary | |
---|---|
boolean |
equals(Object obj)
|
int |
hashCode()
|
boolean |
isClosingContainer()
Checks if we are leaving a container node. |
boolean |
isOpeningContainer()
Checks if we are entering a container node. |
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public final Node node
public final boolean isNodeEnd
If node
is an element node and this property is
true
then report the node as the end-element event.
If node
is a document node and this property is
true
then report the node as the end-document event.
In other words, true
if we are leaving current node
(only in case of element, document or document fragment),
false
otherwise. Ignore this value if node
is
not a container.
Method Detail |
---|
public boolean isOpeningContainer()
true
if the node is a
DOMUtils.isContainer(Node)
and isNodeEnd
is
false
.public boolean isClosingContainer()
true
if the node is a
DOMUtils.isContainer(Node)
and isNodeEnd
is
true
.public boolean equals(Object obj)
equals
in class Object
public int hashCode()
hashCode
in class Object
public String toString()
toString
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |