Uses of Class
org.apache.commons.jxpath.ri.QName
-
Packages that use QName Package Description org.apache.commons.jxpath.ri Reference implementation of JXPath.org.apache.commons.jxpath.ri.axes Implementations of EvalContext used for different XPath axes (child::, parent:: etc).org.apache.commons.jxpath.ri.compiler XPath parse tree.org.apache.commons.jxpath.ri.model The "model" package defines APIs that are implemented for every object model to be supported by JXPath.org.apache.commons.jxpath.ri.model.beans Implementation of "model" APIs for JavaBeans, Dynamic Property Objects, collections and null.org.apache.commons.jxpath.ri.model.container Implementation of "model" APIs for Containers.org.apache.commons.jxpath.ri.model.dom Implementation of "model" APIs for W3C DOM.org.apache.commons.jxpath.ri.model.dynabeans Implementation of "model" APIs for Commons BeanUtils DynaBeans.org.apache.commons.jxpath.ri.model.dynamic Implementation of "model" APIs for dynamic property objects e.g.org.apache.commons.jxpath.ri.model.jdom Implementation of "model" APIs for JDOM (see jdom.org). -
-
Uses of QName in org.apache.commons.jxpath.ri
Methods in org.apache.commons.jxpath.ri with parameters of type QName Modifier and Type Method Description Function
JXPathContextReferenceImpl. getFunction(QName functionName, java.lang.Object[] parameters)
Get the named Function.NodePointer
JXPathContextReferenceImpl. getVariablePointer(QName name)
Get a VariablePointer for the given variable name. -
Uses of QName in org.apache.commons.jxpath.ri.axes
Fields in org.apache.commons.jxpath.ri.axes declared as QName Modifier and Type Field Description private static QName
SimplePathInterpreter. QNAME_NAME
private static QName
AttributeContext. WILDCARD
Methods in org.apache.commons.jxpath.ri.axes with parameters of type QName Modifier and Type Method Description Function
RootContext. getFunction(QName functionName, java.lang.Object[] parameters)
Get the specified function from the context.EvalContext
RootContext. getVariableContext(QName variableName)
Get variable context.private static boolean
SimplePathInterpreter. isLangAttribute(QName name)
Learn whethername
is a lang attribute. -
Uses of QName in org.apache.commons.jxpath.ri.compiler
Fields in org.apache.commons.jxpath.ri.compiler declared as QName Modifier and Type Field Description private QName
ExtensionFunction. functionName
private QName
Expression.PointerIterator. qname
private QName
NodeNameTest. qname
private static QName
TreeCompiler. QNAME_NAME
private QName
VariableReference. varName
Methods in org.apache.commons.jxpath.ri.compiler that return QName Modifier and Type Method Description QName
ExtensionFunction. getFunctionName()
Get the function nameQName
NodeNameTest. getNodeName()
Get the node name.QName
VariableReference. getVariableName()
Get the variable name.Constructors in org.apache.commons.jxpath.ri.compiler with parameters of type QName Constructor Description ExtensionFunction(QName functionName, Expression[] args)
Create a new ExtensionFunction.NodeNameTest(QName qname)
Create a new NodeNameTest.NodeNameTest(QName qname, java.lang.String namespaceURI)
Create a new NodeNameTest.PointerIterator(java.util.Iterator it, QName qname, java.util.Locale locale)
Deprecated.Use the method that takes a NamespaceManagerVariableReference(QName varName)
Create a new VariableReference. -
Uses of QName in org.apache.commons.jxpath.ri.model
Fields in org.apache.commons.jxpath.ri.model declared as QName Modifier and Type Field Description private QName
VariablePointer. name
Methods in org.apache.commons.jxpath.ri.model that return QName Modifier and Type Method Description abstract QName
NodePointer. getName()
Returns the name of this node.QName
VariablePointer. getName()
Methods in org.apache.commons.jxpath.ri.model with parameters of type QName Modifier and Type Method Description NodeIterator
NodePointer. attributeIterator(QName qname)
Returns a NodeIterator that iterates over all attributes of the current node matching the supplied node name (could have a wildcard).NodeIterator
VariablePointer. attributeIterator(QName name)
NodePointer
NodePointer. createAttribute(JXPathContext context, QName name)
Called to create a non-existing attributeNodePointer
NodePointer. createChild(JXPathContext context, QName name, int index)
Called by a child pointer when it needs to create a parent object for a non-existent collection element.NodePointer
NodePointer. createChild(JXPathContext context, QName name, int index, java.lang.Object value)
Called by a child pointer if that child needs to assign the value supplied in the createPath(context, value) call to a non-existent node.NodePointer
VariablePointer. createChild(JXPathContext context, QName name, int index)
NodePointer
VariablePointer. createChild(JXPathContext context, QName name, int index, java.lang.Object value)
NodePointer
NodePointerFactory. createNodePointer(NodePointer parent, QName name, java.lang.Object object)
Create a NodePointer for the supplied child object.NodePointer
NodePointerFactory. createNodePointer(QName name, java.lang.Object object, java.util.Locale locale)
Create a NodePointer for the supplied object.NodePointer
VariablePointerFactory. createNodePointer(NodePointer parent, QName name, java.lang.Object object)
NodePointer
VariablePointerFactory. createNodePointer(QName name, java.lang.Object object, java.util.Locale locale)
static NodePointer
NodePointer. newChildNodePointer(NodePointer parent, QName name, java.lang.Object bean)
Allocates an new child NodePointer by iterating through all installed NodePointerFactories until it finds one that can create a pointer.static NodePointer
NodePointer. newNodePointer(QName name, java.lang.Object bean, java.util.Locale locale)
Allocates an entirely new NodePointer by iterating through all installed NodePointerFactories until it finds one that can create a pointer.Constructors in org.apache.commons.jxpath.ri.model with parameters of type QName Constructor Description VariablePointer(QName name)
Create a new (non-actual) VariablePointer.VariablePointer(Variables variables, QName name)
Create a new VariablePointer. -
Uses of QName in org.apache.commons.jxpath.ri.model.beans
Fields in org.apache.commons.jxpath.ri.model.beans declared as QName Modifier and Type Field Description private QName
BeanPointer. name
private QName
CollectionAttributeNodeIterator. name
private QName
NullPointer. name
Methods in org.apache.commons.jxpath.ri.model.beans that return QName Modifier and Type Method Description QName
BeanPointer. getName()
QName
CollectionPointer. getName()
QName
LangAttributePointer. getName()
QName
NullElementPointer. getName()
QName
NullPointer. getName()
QName
NullPropertyPointer. getName()
abstract QName
PropertyOwnerPointer. getName()
QName
PropertyPointer. getName()
Methods in org.apache.commons.jxpath.ri.model.beans with parameters of type QName Modifier and Type Method Description NodeIterator
CollectionPointer. attributeIterator(QName name)
NodeIterator
PropertyOwnerPointer. attributeIterator(QName name)
NodePointer
CollectionPointer. createChild(JXPathContext context, QName name, int index)
NodePointer
CollectionPointer. createChild(JXPathContext context, QName name, int index, java.lang.Object value)
NodePointer
NullPointer. createChild(JXPathContext context, QName name, int index)
NodePointer
NullPointer. createChild(JXPathContext context, QName name, int index, java.lang.Object value)
NodePointer
NullPropertyPointer. createChild(JXPathContext context, QName name, int index)
NodePointer
NullPropertyPointer. createChild(JXPathContext context, QName name, int index, java.lang.Object value)
NodePointer
PropertyPointer. createChild(JXPathContext context, QName name, int index)
NodePointer
PropertyPointer. createChild(JXPathContext context, QName name, int index, java.lang.Object value)
NodePointer
BeanPointerFactory. createNodePointer(NodePointer parent, QName name, java.lang.Object bean)
NodePointer
BeanPointerFactory. createNodePointer(QName name, java.lang.Object bean, java.util.Locale locale)
NodePointer
CollectionPointerFactory. createNodePointer(NodePointer parent, QName name, java.lang.Object bean)
NodePointer
CollectionPointerFactory. createNodePointer(QName name, java.lang.Object bean, java.util.Locale locale)
boolean
PropertyOwnerPointer. isValidProperty(QName name)
Learn whethername
is a valid child name for this PropertyOwnerPointer.Constructors in org.apache.commons.jxpath.ri.model.beans with parameters of type QName Constructor Description BeanAttributeIterator(PropertyOwnerPointer parent, QName name)
Create a new BeanAttributeIterator.BeanPointer(NodePointer parent, QName name, java.lang.Object bean, JXPathBeanInfo beanInfo)
Create a new BeanPointer.BeanPointer(QName name, java.lang.Object bean, JXPathBeanInfo beanInfo, java.util.Locale locale)
Create a new BeanPointer.CollectionAttributeNodeIterator(CollectionPointer pointer, QName name)
Create a new CollectionAttributeNodeIterator.NullPointer(NodePointer parent, QName name)
Used for the root node.NullPointer(QName name, java.util.Locale locale)
Create a new NullPointer. -
Uses of QName in org.apache.commons.jxpath.ri.model.container
Methods in org.apache.commons.jxpath.ri.model.container that return QName Modifier and Type Method Description QName
ContainerPointer. getName()
Methods in org.apache.commons.jxpath.ri.model.container with parameters of type QName Modifier and Type Method Description NodeIterator
ContainerPointer. attributeIterator(QName name)
NodePointer
ContainerPointerFactory. createNodePointer(NodePointer parent, QName name, java.lang.Object bean)
NodePointer
ContainerPointerFactory. createNodePointer(QName name, java.lang.Object bean, java.util.Locale locale)
-
Uses of QName in org.apache.commons.jxpath.ri.model.dom
Fields in org.apache.commons.jxpath.ri.model.dom declared as QName Modifier and Type Field Description private QName
DOMAttributeIterator. name
Methods in org.apache.commons.jxpath.ri.model.dom that return QName Modifier and Type Method Description QName
DOMAttributePointer. getName()
QName
DOMNodePointer. getName()
QName
NamespacePointer. getName()
Methods in org.apache.commons.jxpath.ri.model.dom with parameters of type QName Modifier and Type Method Description NodeIterator
DOMNodePointer. attributeIterator(QName name)
NodePointer
DOMNodePointer. createAttribute(JXPathContext context, QName name)
NodePointer
DOMNodePointer. createChild(JXPathContext context, QName name, int index)
NodePointer
DOMNodePointer. createChild(JXPathContext context, QName name, int index, java.lang.Object value)
NodePointer
DOMPointerFactory. createNodePointer(NodePointer parent, QName name, java.lang.Object bean)
NodePointer
DOMPointerFactory. createNodePointer(QName name, java.lang.Object bean, java.util.Locale locale)
private org.w3c.dom.Attr
DOMAttributeIterator. getAttribute(org.w3c.dom.Element element, QName name)
Get the named attribute.Constructors in org.apache.commons.jxpath.ri.model.dom with parameters of type QName Constructor Description DOMAttributeIterator(NodePointer parent, QName name)
Create a new DOMAttributeIterator. -
Uses of QName in org.apache.commons.jxpath.ri.model.dynabeans
Fields in org.apache.commons.jxpath.ri.model.dynabeans declared as QName Modifier and Type Field Description private QName
DynaBeanPointer. name
Methods in org.apache.commons.jxpath.ri.model.dynabeans that return QName Modifier and Type Method Description QName
DynaBeanPointer. getName()
Methods in org.apache.commons.jxpath.ri.model.dynabeans with parameters of type QName Modifier and Type Method Description NodePointer
DynaBeanPointerFactory. createNodePointer(NodePointer parent, QName name, java.lang.Object bean)
NodePointer
DynaBeanPointerFactory. createNodePointer(QName name, java.lang.Object bean, java.util.Locale locale)
Constructors in org.apache.commons.jxpath.ri.model.dynabeans with parameters of type QName Constructor Description DynaBeanPointer(NodePointer parent, QName name, org.apache.commons.beanutils.DynaBean dynaBean)
Create a new DynaBeanPointer.DynaBeanPointer(QName name, org.apache.commons.beanutils.DynaBean dynaBean, java.util.Locale locale)
Create a new DynaBeanPointer. -
Uses of QName in org.apache.commons.jxpath.ri.model.dynamic
Fields in org.apache.commons.jxpath.ri.model.dynamic declared as QName Modifier and Type Field Description private QName
DynamicPointer. name
Methods in org.apache.commons.jxpath.ri.model.dynamic that return QName Modifier and Type Method Description QName
DynamicPointer. getName()
Methods in org.apache.commons.jxpath.ri.model.dynamic with parameters of type QName Modifier and Type Method Description NodeIterator
DynamicPointer. attributeIterator(QName name)
NodePointer
DynamicPointerFactory. createNodePointer(NodePointer parent, QName name, java.lang.Object bean)
NodePointer
DynamicPointerFactory. createNodePointer(QName name, java.lang.Object bean, java.util.Locale locale)
Constructors in org.apache.commons.jxpath.ri.model.dynamic with parameters of type QName Constructor Description DynamicAttributeIterator(PropertyOwnerPointer parent, QName name)
Create a new DynamicAttributeIterator.DynamicPointer(NodePointer parent, QName name, java.lang.Object bean, DynamicPropertyHandler handler)
Create a new DynamicPointer.DynamicPointer(QName name, java.lang.Object bean, DynamicPropertyHandler handler, java.util.Locale locale)
Create a new DynamicPointer. -
Uses of QName in org.apache.commons.jxpath.ri.model.jdom
Methods in org.apache.commons.jxpath.ri.model.jdom that return QName Modifier and Type Method Description QName
JDOMAttributePointer. getName()
QName
JDOMNamespacePointer. getName()
QName
JDOMNodePointer. getName()
Methods in org.apache.commons.jxpath.ri.model.jdom with parameters of type QName Modifier and Type Method Description NodeIterator
JDOMNodePointer. attributeIterator(QName name)
NodePointer
JDOMNodePointer. createAttribute(JXPathContext context, QName name)
NodePointer
JDOMNodePointer. createChild(JXPathContext context, QName name, int index)
NodePointer
JDOMNodePointer. createChild(JXPathContext context, QName name, int index, java.lang.Object value)
NodePointer
JDOMPointerFactory. createNodePointer(NodePointer parent, QName name, java.lang.Object bean)
NodePointer
JDOMPointerFactory. createNodePointer(QName name, java.lang.Object bean, java.util.Locale locale)
Constructors in org.apache.commons.jxpath.ri.model.jdom with parameters of type QName Constructor Description JDOMAttributeIterator(NodePointer parent, QName name)
Create a new JDOMAttributeIterator.
-