|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object groovy.lang.GroovyObjectSupport groovy.util.slurpersupport.GPathResult groovy.util.slurpersupport.NodeChild
public class NodeChild extends GPathResult
Lazy evaluated representation of a child node.
Field Summary |
---|
Fields inherited from class GPathResult | |
---|---|
name, namespaceMap, namespacePrefix, namespaceTagHints, parent |
Constructor Summary | |
NodeChild(Node node, GPathResult parent, java.lang.String namespacePrefix, java.util.Map namespaceTagHints)
@param node a node |
|
NodeChild(Node node, GPathResult parent, java.util.Map namespaceTagHints)
@param node a node |
Method Summary | |
---|---|
protected void
|
appendNode(java.lang.Object newValue)
|
java.util.Map
|
attributes()
Returns a map containing all attributes of the Node of this NodeChild. |
void
|
build(GroovyObject builder)
|
java.util.Iterator
|
childNodes()
|
GPathResult
|
find(Closure closure)
|
GPathResult
|
findAll(Closure closure)
|
java.lang.Object
|
getAt(int index)
|
java.util.Iterator
|
iterator()
|
java.lang.String
|
namespaceURI()
Returns the URI of the namespace of this NodeChild. |
java.util.Iterator
|
nodeIterator()
|
GPathResult
|
parents()
Throws a |
protected void
|
replaceBody(java.lang.Object newValue)
|
protected void
|
replaceNode(Closure newValue)
|
int
|
size()
|
java.lang.String
|
text()
|
java.io.Writer
|
writeTo(java.io.Writer out)
|
Methods inherited from class GPathResult | |
---|---|
appendNode, breadthFirst, childNodes, children, declareNamespace, depthFirst, equals, find, findAll, getAt, getAt, getBody, getProperty, isEmpty, iterator, leftShift, list, lookupNamespace, name, nodeIterator, parent, parents, plus, putAt, replaceBody, replaceNode, setMetaClass, setProperty, size, text, toBigDecimal, toBigInteger, toBoolean, toDouble, toFloat, toInteger, toLong, toString, toURI, toURL |
Methods inherited from class GroovyObjectSupport | |
---|---|
getMetaClass, getProperty, invokeMethod, setMetaClass, setProperty |
Methods inherited from class java.lang.Object | |
---|---|
java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Constructor Detail |
---|
public NodeChild(Node node, GPathResult parent, java.lang.String namespacePrefix, java.util.Map namespaceTagHints)
node
- a nodeparent
- the GPathResult prior to the application of the expression creating this GPathResultnamespacePrefix
- the namespace prefix if anynamespaceTagHints
- the known tag to namespace mappings
public NodeChild(Node node, GPathResult parent, java.util.Map namespaceTagHints)
node
- a nodeparent
- the GPathResult prior to the application of the expression creating this GPathResultnamespaceTagHints
- the known tag to namespace mappings
Method Detail |
---|
protected void appendNode(java.lang.Object newValue)
public java.util.Map attributes()
public void build(GroovyObject builder)
public java.util.Iterator childNodes()
public GPathResult find(Closure closure)
public GPathResult findAll(Closure closure)
public java.lang.Object getAt(int index)
public java.util.Iterator iterator()
public java.lang.String namespaceURI()
public java.util.Iterator nodeIterator()
public GPathResult parents()
GroovyRuntimeException
, because this method is not implemented yet.
protected void replaceBody(java.lang.Object newValue)
protected void replaceNode(Closure newValue)
public int size()
public java.lang.String text()
public java.io.Writer writeTo(java.io.Writer out)
Groovy Documentation