Package groovy.xml.slurpersupport
Class NoChildren
java.lang.Object
groovy.lang.GroovyObjectSupport
groovy.xml.slurpersupport.GPathResult
groovy.xml.slurpersupport.NoChildren
- All Implemented Interfaces:
Buildable
,GroovyObject
,Writable
,Iterable
Lazy evaluated representation of a GPath expression returning no children.
As this class represents a GPath expression with no results, all methods
are either NOPs or return an empty result.
-
Field Summary
Fields inherited from class groovy.xml.slurpersupport.GPathResult
name, namespaceMap, namespacePrefix, namespaceTagHints, parent
-
Constructor Summary
ConstructorDescriptionNoChildren
(GPathResult parent, String name, Map<String, String> namespaceTagHints) -
Method Summary
Modifier and TypeMethodDescriptionprotected void
appendNode
(Object newValue) NOPboolean
Returnsfalse
.void
build
(GroovyObject builder) NOPReturns an emptyIterator
.Returnsthis
.Returnsthis
.iterator()
Returns an emptyIterator
.Returns an empty iterator.parents()
Throws aGroovyRuntimeException
, because it is not implemented yet.protected void
replaceBody
(Object newValue) NOPprotected void
replaceNode
(Closure newValue) NOPint
size()
Returns0
.text()
Returns an emptyString
.Does not write any output, just returns the writer.Methods inherited from class groovy.xml.slurpersupport.GPathResult
breadthFirst, children, createIterator, declareNamespace, depthFirst, equals, getAt, getAt, getBody, getProperty, hashCode, isEmpty, leftShift, list, lookupNamespace, name, parent, plus, plus, pop, putAt, setMetaClass, setProperty, toBigDecimal, toBigInteger, toBoolean, toDouble, toFloat, toInteger, toLong, toString, toURI, toURL
Methods inherited from class groovy.lang.GroovyObjectSupport
getMetaClass
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface groovy.lang.GroovyObject
invokeMethod
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
NoChildren
- Parameters:
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
-
-
Method Details
-
size
public int size()Returns0
.- Specified by:
size
in classGPathResult
- Returns:
0
-
text
Returns an emptyString
.- Specified by:
text
in classGPathResult
- Returns:
- an empty
String
-
parents
Throws aGroovyRuntimeException
, because it is not implemented yet.- Specified by:
parents
in classGPathResult
- Returns:
- the parents of this GPathResult
-
childNodes
Returns an emptyIterator
.- Specified by:
childNodes
in classGPathResult
- Returns:
- an empty
Iterator
-
iterator
Returns an emptyIterator
.- Specified by:
iterator
in interfaceIterable
- Specified by:
iterator
in classGPathResult
- Returns:
- an empty
Iterator
-
find
Returnsthis
.- Specified by:
find
in classGPathResult
- Parameters:
closure
- a closure to filters the children of this GPathResult- Returns:
this
-
findAll
Returnsthis
.- Specified by:
findAll
in classGPathResult
- Parameters:
closure
- a closure to filters the children of this GPathResult- Returns:
this
-
nodeIterator
Returns an empty iterator.- Specified by:
nodeIterator
in classGPathResult
- Returns:
- an empty iterator
-
writeTo
Does not write any output, just returns the writer.- Parameters:
out
- the Writer to which this Writable should output its data.- Returns:
- the
Writer
which was passed in - Throws:
IOException
- if an error occurred while outputting data to the writer
-
build
NOP -
replaceNode
NOP- Specified by:
replaceNode
in classGPathResult
-
replaceBody
NOP- Specified by:
replaceBody
in classGPathResult
-
appendNode
NOP- Specified by:
appendNode
in classGPathResult
-
asBoolean
public boolean asBoolean()Returnsfalse
.- Returns:
false
-