Uses of Interface
org.eolang.jeo.representation.xmir.XmlNode
-
Packages that use XmlNode Package Description org.eolang.jeo.representation.xmir Package for reading XMIR files and converting them into bytecode. -
-
Uses of XmlNode in org.eolang.jeo.representation.xmir
Classes in org.eolang.jeo.representation.xmir that implement XmlNode Modifier and Type Class Description class
JcabiXmlNode
Jcabi XML node.class
NativeXmlNode
XML smart element.Methods in org.eolang.jeo.representation.xmir that return XmlNode Modifier and Type Method Description XmlNode
JcabiXmlNode. child(String name)
XmlNode
JcabiXmlNode. child(String attribute, String value)
XmlNode
NativeXmlNode. child(String name)
XmlNode
NativeXmlNode. child(String attribute, String value)
XmlNode
XmlNode. child(String name)
Get child node.XmlNode
XmlNode. child(String attribute, String value)
Get child node by attribute.XmlNode
JcabiXmlNode. firstChild()
XmlNode
NativeXmlNode. firstChild()
XmlNode
XmlNode. firstChild()
Get first child.XmlNode
JcabiXmlDoc. root()
XmlNode
NativeXmlDoc. root()
XmlNode
XmlDoc. root()
Root node.Methods in org.eolang.jeo.representation.xmir that return types with arguments of type XmlNode Modifier and Type Method Description Stream<XmlNode>
JcabiXmlNode. children()
Stream<XmlNode>
NativeXmlNode. children()
Stream<XmlNode>
XmlNode. children()
Get all child nodes.Optional<XmlNode>
JcabiXmlNode. optchild(String attribute, String value)
Optional<XmlNode>
NativeXmlNode. optchild(String attribute, String value)
Optional<XmlNode>
XmlNode. optchild(String attribute, String value)
Get optional child node by attribute.Constructors in org.eolang.jeo.representation.xmir with parameters of type XmlNode Constructor Description XmlAnnotationValue(XmlNode xmlnode)
Constructor.XmlClass(XmlNode node)
Constructor.XmlFrame(XmlNode xmlnode)
Constructor.XmlMethod(XmlNode xmlnode)
Constructor.XmlParam(XmlNode root)
Constructor.XmlParams(XmlNode node)
Constructor.XmlProgram(XmlNode root)
Constructor.XmlTryCatchEntry(XmlNode node)
Constructor.XmlValue(XmlNode node)
Constructor.
-