public class NodeChild
extends GPathResult
Lazy evaluated representation of a child node.
| Fields inherited from class | Fields |
|---|---|
class GPathResult |
name, namespaceMap, namespacePrefix, namespaceTagHints, parent |
| Type Params | Return Type | Name and description |
|---|---|---|
|
protected void |
appendNode(Object newValue)Lazily appends content to the nodes represented by this result.
|
|
public Map |
attributes()Returns a map containing all attributes of the Node of this NodeChild. |
|
public void |
build(GroovyObject builder)Builds this object into the supplied builder.
|
|
public Iterator |
childNodes()Returns an iterator over the child nodes of this GPathResult.
|
|
public GPathResult |
find(Closure closure)Returns the first child of this GPathResult matching the condition(s) specified in the passed closure.
|
|
public GPathResult |
findAll(Closure closure)Returns the children of this GPathResult matching the condition(s) specified in the passed closure.
|
|
public Object |
getAt(int index)Supports the subscript operator for a GPathResult.
|
|
public Iterator |
iterator(){@inheritDoc} |
|
public List<String> |
localText()Returns the list of any direct String nodes of this NodeChild. |
|
public String |
namespaceURI()Returns the URI of the namespace of this NodeChild. |
|
public Iterator |
nodeIterator()Returns the raw node iterator backing this lazy result.
|
|
public GPathResult |
parent()Returns as GPathResult with the parent nodes of the current GPathResult
|
|
public GPathResult |
parents()Throws a GroovyRuntimeException, because this method is not implemented yet. |
|
protected void |
replaceBody(Object newValue)Lazily replaces the body content represented by this result.
|
|
protected void |
replaceNode(Closure newValue)Lazily replaces the nodes represented by this result.
|
|
public int |
size()Returns the size of this GPathResult.
|
|
public String |
text()Returns the text of this GPathResult as a String.
|
|
public Writer |
writeTo(Writer out)Writes this object to the given writer. This is used to defer content creation until the point when it is streamed to the output destination. Oftentimes, content will be defined but not necessarily created (as it may be the case with a Closure definition.) In that case, the output is then 'deferred' to the point when it is serialized to the writer. This class may be used whenever an object should be responsible for creating its own textual representation, but creating the entire output as a single String would be inefficient (such as outputting a multi-gigabyte XML document.)
|
| Methods inherited from class | Name |
|---|---|
class GPathResult |
appendNode, breadthFirst, childNodes, children, createIterator, declareNamespace, depthFirst, equals, find, findAll, getAt, getAt, getBody, getProperty, hashCode, isEmpty, iterator, leftShift, list, lookupNamespace, name, nodeIterator, parent, parents, plus, plus, pop, putAt, replaceBody, replaceNode, setMetaClass, setProperty, size, text, toBigDecimal, toBigInteger, toBoolean, toDouble, toFloat, toInteger, toLong, toString, toURI, toURL |
class GroovyObjectSupport |
getMetaClass, setMetaClass |
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
node - a nodeparent - the GPathResult prior to the application of the expression creating this GPathResultnamespaceTagHints - the known tag to namespace mappingsLazily appends content to the nodes represented by this result.
newValue - content to appendReturns a map containing all attributes of the Node of this NodeChild.
Builds this object into the supplied builder.
builder - the target builderReturns an iterator over the child nodes of this GPathResult.
Returns the first child of this GPathResult matching the condition(s) specified in the passed closure.
closure - a closure to filters the children of this GPathResultReturns the children of this GPathResult matching the condition(s) specified in the passed closure.
closure - a closure to filters the children of this GPathResultSupports the subscript operator for a GPathResult.
import groovy.xml.slurpersupport.*
import groovy.xml.XmlSlurper
def text = """
<characterList>
<character/>
<character>
<name>Gromit</name>
</character>
</characterList>"""
GPathResult characterList = new XmlSlurper().parseText(text)
assert characterList.character[1].name == 'Gromit'
index - an index{@inheritDoc}
Returns the list of any direct String nodes of this NodeChild.
Returns the URI of the namespace of this NodeChild.
Returns the raw node iterator backing this lazy result.
Returns as GPathResult with the parent nodes of the current GPathResult
this for the root Throws a GroovyRuntimeException, because this method is not implemented yet.
Lazily replaces the body content represented by this result.
newValue - replacement body contentLazily replaces the nodes represented by this result.
newValue - closure generating the replacement contentReturns the size of this GPathResult.
Returns the text of this GPathResult as a String.
Writes this object to the given writer.
This is used to defer content creation until the point when it is streamed to the output destination. Oftentimes, content will be defined but not necessarily created (as it may be the case with a Closure definition.) In that case, the output is then 'deferred' to the point when it is serialized to the writer. This class may be used whenever an object should be responsible for creating its own textual representation, but creating the entire output as a single String would be inefficient (such as outputting a multi-gigabyte XML document.)
out - the Writer to which this Writable should output its data.Copyright © 2003-2026 The Apache Software Foundation. All rights reserved.