Uses of Class
org.apache.commons.configuration2.tree.xpath.ConfigurationNodePointer
-
Packages that use ConfigurationNodePointer Package Description org.apache.commons.configuration2.tree.xpath This package contains theXPathExpressionEngine
class which enables XPATH support for querying configuration properties. -
-
Uses of ConfigurationNodePointer in org.apache.commons.configuration2.tree.xpath
Fields in org.apache.commons.configuration2.tree.xpath declared as ConfigurationNodePointer Modifier and Type Field Description private ConfigurationNodePointer<T>
AbstractConfigurationNodeIterator. parent
Stores the parent node pointer.private ConfigurationNodePointer<T>
ConfigurationNodeIteratorAttribute. parentPointer
Stores the parent node pointer.Methods in org.apache.commons.configuration2.tree.xpath that return ConfigurationNodePointer Modifier and Type Method Description private ConfigurationNodePointer<T>
ConfigurationNodePointer. castPointer(org.apache.commons.jxpath.ri.model.NodePointer p)
Casts the given child pointer to a node pointer of this type.protected ConfigurationNodePointer<T>
AbstractConfigurationNodeIterator. getParent()
Gets the parent node pointer.ConfigurationNodePointer<T>
ConfigurationAttributePointer. getParentPointer()
Gets a reference to the parent node pointer.Methods in org.apache.commons.configuration2.tree.xpath with parameters of type ConfigurationNodePointer Modifier and Type Method Description private void
ConfigurationNodeIteratorAttribute. addAttributeData(ConfigurationNodePointer<T> parent, java.util.List<java.lang.String> result, java.lang.String name)
Helper method for checking whether an attribute is defined and adding it to the list of attributes to iterate over.private java.util.List<java.lang.String>
ConfigurationNodeIteratorAttribute. createAttributeDataList(ConfigurationNodePointer<T> parent, org.apache.commons.jxpath.ri.QName name)
Determines which attributes are selected based on the passed in node name.Constructors in org.apache.commons.configuration2.tree.xpath with parameters of type ConfigurationNodePointer Constructor Description AbstractConfigurationNodeIterator(ConfigurationNodePointer<T> parent, boolean reverse)
Creates a new instance ofConfigurationNodeIteratorBase
and initializes it.ConfigurationAttributePointer(ConfigurationNodePointer<T> parent, java.lang.String attrName)
Creates a new instance ofConfigurationAttributePointer
.ConfigurationNodeIteratorAttribute(ConfigurationNodePointer<T> parent, org.apache.commons.jxpath.ri.QName name)
Creates a new instance ofConfigurationNodeIteratorAttribute
.ConfigurationNodeIteratorChildren(ConfigurationNodePointer<T> parent, org.apache.commons.jxpath.ri.compiler.NodeTest nodeTest, boolean reverse, ConfigurationNodePointer<T> startsWith)
Creates a new instance ofConfigurationNodeIteratorChildren
and initializes it.ConfigurationNodePointer(ConfigurationNodePointer<T> parent, T node, NodeHandler<T> handler)
Creates a new instance ofConfigurationNodePointer
and initializes it with its parent pointer.
-