public class Attributes extends NodeChildren
name, namespaceMap, namespacePrefix, namespaceTagHints, parent
Constructor and Description |
---|
Attributes(GPathResult parent,
String name,
Map<String,String> namespaceTagHints) |
Attributes(GPathResult parent,
String name,
String namespacePrefix,
Map<String,String> namespaceTagHints) |
Modifier and Type | Method and Description |
---|---|
void |
build(GroovyObject builder) |
Iterator |
childNodes()
Throws a
GroovyRuntimeException , because attributes can have no children. |
GPathResult |
findAll(Closure closure)
Returns the children of this GPathResult matching the condition(s)
specified in the passed closure.
|
Iterator |
iterator() |
List |
list()
Creates a list of objects representing this GPathResult.
|
String |
name()
Returns the name of this GPathResult.
|
Iterator |
nodeIterator() |
GPathResult |
parents()
Throws a
GroovyRuntimeException , because it is not implemented yet. |
String |
text()
Returns the text of this GPathResult as a
String . |
Writer |
writeTo(Writer out)
Writes this object to the given writer.
|
appendNode, find, replaceBody, replaceNode, size
breadthFirst, children, declareNamespace, depthFirst, equals, getAt, getAt, getBody, getProperty, isEmpty, leftShift, lookupNamespace, parent, plus, pop, putAt, setMetaClass, setProperty, toBigDecimal, toBigInteger, toBoolean, toDouble, toFloat, toInteger, toLong, toString, toURI, toURL
getMetaClass, invokeMethod
public Attributes(GPathResult parent, String name, String namespacePrefix, Map<String,String> namespaceTagHints)
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 mappingspublic Attributes(GPathResult parent, String name, Map<String,String> namespaceTagHints)
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 mappingspublic String name()
GPathResult
name
in class GPathResult
public Iterator childNodes()
GroovyRuntimeException
, because attributes can have no children.childNodes
in class NodeChildren
public Iterator iterator()
iterator
in interface Iterable
iterator
in class NodeChildren
public Iterator nodeIterator()
nodeIterator
in class NodeChildren
public GPathResult parents()
NodeChildren
GroovyRuntimeException
, because it is not implemented yet.parents
in class NodeChildren
public String text()
GPathResult
String
.text
in class NodeChildren
public List list()
GPathResult
list
in class GPathResult
public GPathResult findAll(Closure closure)
GPathResult
findAll
in class NodeChildren
closure
- a closure to filters the children of this GPathResultpublic Writer writeTo(Writer out) throws IOException
Writable
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 is 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.)
writeTo
in interface Writable
writeTo
in class NodeChildren
out
- the Writer to which this Writable should output its data.IOException
- if an error occurred while outputting data to the writerpublic void build(GroovyObject builder)
build
in interface Buildable
build
in class NodeChildren