Uses of Class
org.apache.commons.jxpath.ri.QName
Packages that use QName
Package
Description
Reference implementation of JXPath.
Implementations of EvalContext used for different XPath axes (child::, parent:: etc).
XPath parse tree.
The "model" package defines APIs that are implemented
for every object model to be supported by JXPath.
Implementation of "model" APIs for JavaBeans, Dynamic Property Objects,
collections and null.
Implementation of "model" APIs for Containers.
Implementation of "model" APIs for W3C DOM.
Implementation of "model" APIs for Commons BeanUtils DynaBeans.
Implementation of "model" APIs for dynamic property objects e.g.
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 QNameModifier and TypeMethodDescriptionJXPathContextReferenceImpl.getFunction
(QName functionName, Object[] parameters) Get the named Function.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 QNameModifier and TypeFieldDescriptionprivate static final QName
SimplePathInterpreter.QNAME_NAME
private static final QName
AttributeContext.WILDCARD
Methods in org.apache.commons.jxpath.ri.axes with parameters of type QNameModifier and TypeMethodDescriptionRootContext.getFunction
(QName functionName, Object[] parameters) Get the specified function from the context.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 QNameModifier and TypeFieldDescriptionprivate QName
ExtensionFunction.functionName
private QName
Expression.PointerIterator.qname
private QName
NodeNameTest.qname
private static final QName
TreeCompiler.QNAME_NAME
private QName
VariableReference.varName
Methods in org.apache.commons.jxpath.ri.compiler that return QNameModifier and TypeMethodDescriptionExtensionFunction.getFunctionName()
Get the function nameNodeNameTest.getNodeName()
Get the node name.VariableReference.getVariableName()
Get the variable name.Constructors in org.apache.commons.jxpath.ri.compiler with parameters of type QNameModifierConstructorDescriptionExtensionFunction
(QName functionName, Expression[] args) Create a new ExtensionFunction.NodeNameTest
(QName qname) Create a new NodeNameTest.NodeNameTest
(QName qname, String namespaceURI) Create a new NodeNameTest.PointerIterator
(Iterator it, QName qname, 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 QNameMethods in org.apache.commons.jxpath.ri.model that return QNameModifier and TypeMethodDescriptionabstract QName
NodePointer.getName()
Returns the name of this node.VariablePointer.getName()
Methods in org.apache.commons.jxpath.ri.model with parameters of type QNameModifier and TypeMethodDescriptionNodePointer.attributeIterator
(QName qname) Returns a NodeIterator that iterates over all attributes of the current node matching the supplied node name (could have a wildcard).VariablePointer.attributeIterator
(QName name) NodePointer.createAttribute
(JXPathContext context, QName name) Called to create a non-existing attributeNodePointer.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.createChild
(JXPathContext context, QName name, int index, 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.VariablePointer.createChild
(JXPathContext context, QName name, int index) VariablePointer.createChild
(JXPathContext context, QName name, int index, Object value) NodePointerFactory.createNodePointer
(NodePointer parent, QName name, Object object) Create a NodePointer for the supplied child object.NodePointerFactory.createNodePointer
(QName name, Object object, Locale locale) Create a NodePointer for the supplied object.VariablePointerFactory.createNodePointer
(NodePointer parent, QName name, Object object) VariablePointerFactory.createNodePointer
(QName name, Object object, Locale locale) static NodePointer
NodePointer.newChildNodePointer
(NodePointer parent, QName name, 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, Object bean, 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 QNameModifierConstructorDescriptionVariablePointer
(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 QNameModifier and TypeFieldDescriptionprivate QName
BeanPointer.name
private QName
CollectionAttributeNodeIterator.name
private QName
NullPointer.name
Methods in org.apache.commons.jxpath.ri.model.beans that return QNameModifier and TypeMethodDescriptionBeanPointer.getName()
CollectionPointer.getName()
LangAttributePointer.getName()
NullElementPointer.getName()
NullPointer.getName()
NullPropertyPointer.getName()
abstract QName
PropertyOwnerPointer.getName()
PropertyPointer.getName()
Methods in org.apache.commons.jxpath.ri.model.beans with parameters of type QNameModifier and TypeMethodDescriptionCollectionPointer.attributeIterator
(QName name) PropertyOwnerPointer.attributeIterator
(QName name) CollectionPointer.createChild
(JXPathContext context, QName name, int index) CollectionPointer.createChild
(JXPathContext context, QName name, int index, Object value) NullPointer.createChild
(JXPathContext context, QName name, int index) NullPointer.createChild
(JXPathContext context, QName name, int index, Object value) NullPropertyPointer.createChild
(JXPathContext context, QName name, int index) NullPropertyPointer.createChild
(JXPathContext context, QName name, int index, Object value) PropertyPointer.createChild
(JXPathContext context, QName name, int index) PropertyPointer.createChild
(JXPathContext context, QName name, int index, Object value) BeanPointerFactory.createNodePointer
(NodePointer parent, QName name, Object bean) BeanPointerFactory.createNodePointer
(QName name, Object bean, Locale locale) CollectionPointerFactory.createNodePointer
(NodePointer parent, QName name, Object bean) CollectionPointerFactory.createNodePointer
(QName name, Object bean, 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 QNameModifierConstructorDescriptionBeanAttributeIterator
(PropertyOwnerPointer parent, QName name) Create a new BeanAttributeIterator.BeanPointer
(NodePointer parent, QName name, Object bean, JXPathBeanInfo beanInfo) Create a new BeanPointer.BeanPointer
(QName name, Object bean, JXPathBeanInfo beanInfo, 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, 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 QNameMethods in org.apache.commons.jxpath.ri.model.container with parameters of type QNameModifier and TypeMethodDescriptionContainerPointer.attributeIterator
(QName name) ContainerPointerFactory.createNodePointer
(NodePointer parent, QName name, Object bean) ContainerPointerFactory.createNodePointer
(QName name, Object bean, Locale locale) -
Uses of QName in org.apache.commons.jxpath.ri.model.dom
Fields in org.apache.commons.jxpath.ri.model.dom declared as QNameMethods in org.apache.commons.jxpath.ri.model.dom that return QNameModifier and TypeMethodDescriptionDOMAttributePointer.getName()
DOMNodePointer.getName()
NamespacePointer.getName()
Methods in org.apache.commons.jxpath.ri.model.dom with parameters of type QNameModifier and TypeMethodDescriptionDOMNodePointer.attributeIterator
(QName name) DOMNodePointer.createAttribute
(JXPathContext context, QName name) DOMNodePointer.createChild
(JXPathContext context, QName name, int index) DOMNodePointer.createChild
(JXPathContext context, QName name, int index, Object value) DOMPointerFactory.createNodePointer
(NodePointer parent, QName name, Object bean) DOMPointerFactory.createNodePointer
(QName name, Object bean, Locale locale) private Attr
DOMAttributeIterator.getAttribute
(Element element, QName name) Get the named attribute.Constructors in org.apache.commons.jxpath.ri.model.dom with parameters of type QNameModifierConstructorDescriptionDOMAttributeIterator
(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 QNameMethods in org.apache.commons.jxpath.ri.model.dynabeans that return QNameMethods in org.apache.commons.jxpath.ri.model.dynabeans with parameters of type QNameModifier and TypeMethodDescriptionDynaBeanPointerFactory.createNodePointer
(NodePointer parent, QName name, Object bean) DynaBeanPointerFactory.createNodePointer
(QName name, Object bean, Locale locale) Constructors in org.apache.commons.jxpath.ri.model.dynabeans with parameters of type QNameModifierConstructorDescriptionDynaBeanPointer
(NodePointer parent, QName name, org.apache.commons.beanutils.DynaBean dynaBean) Create a new DynaBeanPointer.DynaBeanPointer
(QName name, org.apache.commons.beanutils.DynaBean dynaBean, 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 QNameMethods in org.apache.commons.jxpath.ri.model.dynamic that return QNameMethods in org.apache.commons.jxpath.ri.model.dynamic with parameters of type QNameModifier and TypeMethodDescriptionDynamicPointer.attributeIterator
(QName name) DynamicPointerFactory.createNodePointer
(NodePointer parent, QName name, Object bean) DynamicPointerFactory.createNodePointer
(QName name, Object bean, Locale locale) Constructors in org.apache.commons.jxpath.ri.model.dynamic with parameters of type QNameModifierConstructorDescriptionDynamicAttributeIterator
(PropertyOwnerPointer parent, QName name) Create a new DynamicAttributeIterator.DynamicPointer
(NodePointer parent, QName name, Object bean, DynamicPropertyHandler handler) Create a new DynamicPointer.DynamicPointer
(QName name, Object bean, DynamicPropertyHandler handler, 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 QNameModifier and TypeMethodDescriptionJDOMAttributePointer.getName()
JDOMNamespacePointer.getName()
JDOMNodePointer.getName()
Methods in org.apache.commons.jxpath.ri.model.jdom with parameters of type QNameModifier and TypeMethodDescriptionJDOMNodePointer.attributeIterator
(QName name) JDOMNodePointer.createAttribute
(JXPathContext context, QName name) JDOMNodePointer.createChild
(JXPathContext context, QName name, int index) JDOMNodePointer.createChild
(JXPathContext context, QName name, int index, Object value) JDOMPointerFactory.createNodePointer
(NodePointer parent, QName name, Object bean) JDOMPointerFactory.createNodePointer
(QName name, Object bean, Locale locale) Constructors in org.apache.commons.jxpath.ri.model.jdom with parameters of type QNameModifierConstructorDescriptionJDOMAttributeIterator
(NodePointer parent, QName name) Create a new JDOMAttributeIterator.