Package groovy.util.slurpersupport
Class Attributes
java.lang.Object
groovy.lang.GroovyObjectSupport
groovy.util.slurpersupport.GPathResult
groovy.util.slurpersupport.NodeChildren
groovy.util.slurpersupport.Attributes
- All Implemented Interfaces:
groovy.lang.Buildable
,groovy.lang.GroovyObject
,groovy.lang.Writable
,Iterable
- Direct Known Subclasses:
FilteredAttributes
@Deprecated public class Attributes extends NodeChildren
Deprecated.
Lazy evaluated representation of a node's attributes.
-
Field Summary
Fields inherited from class groovy.util.slurpersupport.GPathResult
name, namespaceMap, namespacePrefix, namespaceTagHints, parent
-
Constructor Summary
Constructors Constructor Description Attributes(GPathResult parent, String name, String namespacePrefix, Map<String,String> namespaceTagHints)
Deprecated.Attributes(GPathResult parent, String name, Map<String,String> namespaceTagHints)
Deprecated. -
Method Summary
Modifier and Type Method Description void
build(groovy.lang.GroovyObject builder)
Deprecated.Iterator
childNodes()
Deprecated.Throws aGroovyRuntimeException
, because attributes can have no children.GPathResult
findAll(groovy.lang.Closure closure)
Deprecated.Returns the children of this GPathResult matching the condition(s) specified in the passed closure.Iterator
iterator()
Deprecated.List
list()
Deprecated.Creates a list of objects representing this GPathResult.String
name()
Deprecated.Returns the name of this GPathResult.Iterator
nodeIterator()
Deprecated.GPathResult
parents()
Deprecated.Throws aGroovyRuntimeException
, because it is not implemented yet.String
text()
Deprecated.Returns the text of this GPathResult as aString
.Writer
writeTo(Writer out)
Deprecated.Methods inherited from class groovy.util.slurpersupport.NodeChildren
appendNode, find, replaceBody, replaceNode, size
Methods inherited from class groovy.util.slurpersupport.GPathResult
breadthFirst, children, createIterator, declareNamespace, depthFirst, equals, getAt, getAt, getBody, getProperty, hashCode, isEmpty, leftShift, lookupNamespace, parent, 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
-
Attributes
public Attributes(GPathResult parent, String name, String namespacePrefix, Map<String,String> namespaceTagHints)Deprecated.- 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 nodenamespacePrefix
- the namespace prefix if anynamespaceTagHints
- the known tag to namespace mappings
-
Attributes
Deprecated.- 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
-
name
Deprecated.Description copied from class:GPathResult
Returns the name of this GPathResult.- Overrides:
name
in classGPathResult
- Returns:
- the name of this GPathResult
-
childNodes
Deprecated.Throws aGroovyRuntimeException
, because attributes can have no children.- Overrides:
childNodes
in classNodeChildren
- Returns:
- an iterator over the child nodes of this GPathResult
-
iterator
Deprecated.- Specified by:
iterator
in interfaceIterable
- Overrides:
iterator
in classNodeChildren
-
nodeIterator
Deprecated.- Overrides:
nodeIterator
in classNodeChildren
-
parents
Deprecated.Description copied from class:NodeChildren
Throws aGroovyRuntimeException
, because it is not implemented yet.- Overrides:
parents
in classNodeChildren
- Returns:
- the parents of this GPathResult
-
text
Deprecated.Description copied from class:GPathResult
Returns the text of this GPathResult as aString
.- Overrides:
text
in classNodeChildren
- Returns:
- the text of this GPathResult
-
list
Deprecated.Description copied from class:GPathResult
Creates a list of objects representing this GPathResult.- Overrides:
list
in classGPathResult
- Returns:
- a list representing of this GPathResult
-
findAll
Deprecated.Description copied from class:GPathResult
Returns the children of this GPathResult matching the condition(s) specified in the passed closure.- Overrides:
findAll
in classNodeChildren
- Parameters:
closure
- a closure to filters the children of this GPathResult- Returns:
- the children matching the closure
-
writeTo
Deprecated.- Specified by:
writeTo
in interfacegroovy.lang.Writable
- Overrides:
writeTo
in classNodeChildren
- Throws:
IOException
-
build
public void build(groovy.lang.GroovyObject builder)Deprecated.- Specified by:
build
in interfacegroovy.lang.Buildable
- Overrides:
build
in classNodeChildren
-