| org.apache.commons.jxpath.CompiledExpression
All known Subclasses: org.apache.commons.jxpath.ri.JXPathCompiledExpression,
CompiledExpression | public interface CompiledExpression (Code) | | Represents a compiled XPath. The interpretation of compiled XPaths
may be faster, because it bypasses the compilation step. The reference
implementation of JXPathContext also globally caches some of the
results of compilation, so the direct use of JXPathContext is not
always less efficient than the use of CompiledExpression.
Use CompiledExpression only when there is a need to evaluate the
same expression multiple times and the CompiledExpression can be
conveniently cached.
To acqure a CompiledExpression, call
JXPathContext.compileJXPathContext.compile author: Dmitri Plotnikov version: $Revision: 1.6 $ $Date: 2004/02/29 14:17:42 $ |
createPath | Pointer createPath(JXPathContext context)(Code) | | Creates intermediate elements of
the path by invoking an AbstractFactory, which should first be
installed on the context by calling "setFactory".
|
createPathAndSetValue | Pointer createPathAndSetValue(JXPathContext context, Object value)(Code) | | The same as setValue, except it creates intermediate elements of
the path by invoking an AbstractFactory, which should first be
installed on the context by calling "setFactory".
Will throw an exception if one of the following conditions occurs:
- Elements of the xpath aleady exist, by the path does not in
fact describe an existing property
- The AbstractFactory fails to create an instance for an intermediate
element.
- The property is not writable (no public, non-static set method)
|
getPointer | Pointer getPointer(JXPathContext context, String xpath)(Code) | | Traverses the xpath and returns a Pointer.
A Pointer provides easy access to a property.
If the xpath matches no properties
in the graph, the pointer will be null.
|
getValue | Object getValue(JXPathContext context)(Code) | | Evaluates the xpath and returns the resulting object. Primitive
types are wrapped into objects.
|
getValue | Object getValue(JXPathContext context, Class requiredType)(Code) | | Evaluates the xpath, converts the result to the specified class and
returns the resulting object.
|
iterate | Iterator iterate(JXPathContext context)(Code) | | Traverses the xpath and returns a Iterator of all results found
for the path. If the xpath matches no properties
in the graph, the Iterator will not be null.
|
iteratePointers | Iterator iteratePointers(JXPathContext context)(Code) | | Traverses the xpath and returns an Iterator of Pointers.
A Pointer provides easy access to a property.
If the xpath matches no properties
in the graph, the Iterator be empty, but not null.
|
removeAll | void removeAll(JXPathContext context)(Code) | | Remove all graph elements described by this expression
|
removePath | void removePath(JXPathContext context)(Code) | | Remove the graph element described by this expression
|
setValue | void setValue(JXPathContext context, Object value)(Code) | | Modifies the value of the property described by the supplied xpath.
Will throw an exception if one of the following conditions occurs:
- The xpath does not in fact describe an existing property
- The property is not writable (no public, non-static set method)
|
|
|