public class NodeChildren
extends GPathResult
Lazy evaluated representation of child nodes.
| Fields inherited from class | Fields |
|---|---|
class GPathResult |
name, namespaceMap, namespacePrefix, namespaceTagHints, parent |
| Constructor and description |
|---|
NodeChildren(GPathResult parent, String name, String namespacePrefix, Map<String, String> namespaceTagHints)
|
NodeChildren(GPathResult parent, String name, Map<String, String> namespaceTagHints)
|
NodeChildren(GPathResult parent, Map<String, String> namespaceTagHints)
|
| Type Params | Return Type | Name and description |
|---|---|---|
|
protected void |
appendNode(Object newValue)* Lazily appends content to the nodes represented by this result. * *
|
|
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 Iterator |
iterator()Returns an iterator over elements of type T.
|
|
public Iterator |
nodeIterator()* Returns the raw node iterator backing this lazy result. * *
|
|
public GPathResult |
parents()Throws a GroovyRuntimeException, because it 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 |
parent - the GPathResult prior to the application of the expression creating this GPathResultname - if the GPathResult corresponds to something with a name, e.g. a nodenamespacePrefix - the namespace prefix if anynamespaceTagHints - the known tag to namespace mappings
parent - the GPathResult prior to the application of the expression creating this GPathResultname - if the GPathResult corresponds to something with a name, e.g. a nodenamespaceTagHints - the known tag to namespace mappings
parent - the GPathResult prior to the application of the expression creating this GPathResultnamespaceTagHints - the known tag to namespace mappings* Lazily appends content to the nodes represented by this result. * *
newValue - content to append* Builds this object into the supplied builder. * *
builder - the target builder* Returns 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 GPathResult
** Returns the children of this GPathResult matching the condition(s) * specified in the passed closure. *
closure - a closure to filters the children of this GPathResult
* Returns an iterator over elements of type T.
* Returns the raw node iterator backing this lazy result. * *
Throws a GroovyRuntimeException, because it is not implemented yet.
* Lazily replaces the body content represented by this result. * *
newValue - replacement body content* Lazily replaces the nodes represented by this result. * *
newValue - closure generating the replacement content* Returns 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.