- call(Context, List) - クラス のメソッドorg.jaxen.function.BooleanFunction
-
Convert the argument to a Boolean
- call(Context, List) - インタフェース のメソッドorg.jaxen.Function
-
Evaluate this function.
- call(Context, List) - クラス のメソッドorg.jaxen.function.CeilingFunction
-
Returns the smallest integer greater than or equal to a number.
- call(Context, List) - クラス のメソッドorg.jaxen.function.ConcatFunction
-
Concatenates the arguments and returns the resulting string.
- call(Context, List) - クラス のメソッドorg.jaxen.function.ContainsFunction
-
Returns true if the string-value of the
first item in args
contains string-value of the second
item; false otherwise.
- call(Context, List) - クラス のメソッドorg.jaxen.function.CountFunction
-
Returns the number of nodes in the specified node-set.
- call(Context, List) - クラス のメソッドorg.jaxen.function.ext.EndsWithFunction
-
- call(Context, List) - クラス のメソッドorg.jaxen.function.ext.EvaluateFunction
-
- call(Context, List) - クラス のメソッドorg.jaxen.function.ext.LowerFunction
-
- call(Context, List) - クラス のメソッドorg.jaxen.function.ext.UpperFunction
-
- call(Context, List) - クラス のメソッドorg.jaxen.function.FalseFunction
-
Returns Boolean.FALSE
- call(Context, List) - クラス のメソッドorg.jaxen.function.FloorFunction
-
Returns the largest integer less than or equal to a number.
- call(Context, List) - クラス のメソッドorg.jaxen.function.IdFunction
-
Returns a list of the nodes with the specified IDs.
- call(Context, List) - クラス のメソッドorg.jaxen.function.LangFunction
-
Determines whether or not the context node is written in the language specified
by the XPath string-value of args.get(0)
,
as determined by the nearest xml:lang
attribute in scope.
- call(Context, List) - クラス のメソッドorg.jaxen.function.LastFunction
-
Returns the number of nodes in the context node-set.
- call(Context, List) - クラス のメソッドorg.jaxen.function.LocalNameFunction
-
Returns the local-name of the specified node or the context node if
no arguments are provided.
- call(Context, List) - クラス のメソッドorg.jaxen.function.NameFunction
-
Returns the name of the specified node or the name of the context node if
no arguments are provided.
- call(Context, List) - クラス のメソッドorg.jaxen.function.NamespaceUriFunction
-
Returns the namespace URI of the specified node or the namespace URI of the context node if
no arguments are provided.
- call(Context, List) - クラス のメソッドorg.jaxen.function.NormalizeSpaceFunction
-
Returns the string-value of the first item in args
after removing all leading and trailing white space, and
replacing each other sequence of whitespace by a single space.
- call(Context, List) - クラス のメソッドorg.jaxen.function.NotFunction
-
Returns Boolean.TRUE
if the boolean value of
args.get(0)
is false, and Boolean.FALSE
otherwise.
- call(Context, List) - クラス のメソッドorg.jaxen.function.NumberFunction
-
Returns the number value of args.get(0)
,
or the number value of the context node if args
is empty.
- call(Context, List) - クラス のメソッドorg.jaxen.function.PositionFunction
-
Returns the position of the context node in the context node-set.
- call(Context, List) - クラス のメソッドorg.jaxen.function.RoundFunction
-
Returns the nearest integer to the number.
- call(Context, List) - クラス のメソッドorg.jaxen.function.StartsWithFunction
-
Returns true if the string-value of the first item in args
starts with the string-value of the second item in args
.
- call(Context, List) - クラス のメソッドorg.jaxen.function.StringFunction
-
Returns the string-value of args.get(0)
or of the context node if args
is empty.
- call(Context, List) - クラス のメソッドorg.jaxen.function.StringLengthFunction
-
Returns the number of Unicode characters in the string-value of the argument.
- call(Context, List) - クラス のメソッドorg.jaxen.function.SubstringAfterFunction
-
Returns the part of the string-value of the first item in args
that follows the string-value of the second item in args
;
or the empty string if the second string is not a substring of the first string.
- call(Context, List) - クラス のメソッドorg.jaxen.function.SubstringBeforeFunction
-
Returns the part of the string-value of the first item in args
that comes before the string-value of the second item in args
;
or the empty string if the second string is not a substring of the first string.
- call(Context, List) - クラス のメソッドorg.jaxen.function.SubstringFunction
-
Returns a substring of an XPath string-value by character index.
- call(Context, List) - クラス のメソッドorg.jaxen.function.SumFunction
-
Returns the sum of its arguments.
- call(Context, List) - クラス のメソッドorg.jaxen.function.TranslateFunction
-
Returns a copy of the first argument in which
characters found in the second argument are replaced by
corresponding characters from the third argument.
- call(Context, List) - クラス のメソッドorg.jaxen.function.TrueFunction
-
Returns Boolean.TRUE
- call(Context, List) - クラス のメソッドorg.jaxen.function.xslt.DocumentFunction
-
- canPop() - クラス のメソッドorg.jaxen.JaxenHandler
-
- CDATA_SECTION_NODE - クラス のstatic変数org.jaxen.pattern.Pattern
-
Matches CDATA section nodes
- CeilingFunction - org.jaxen.functionのクラス
-
4.4 number ceiling(number)
The ceiling function returns the smallest
(closest to negative infinity) number that is not less
than the argument and that is an integer....If the argument
is NaN, then NaN is returned.
- CeilingFunction() - クラス のコンストラクタorg.jaxen.function.CeilingFunction
-
Create a new CeilingFunction
object.
- CHILD - クラス のstatic変数org.jaxen.saxpath.Axis
-
The child
axis
- cloneNode(boolean) - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Create a copy of this node.
- COMMENT_NODE - クラス のstatic変数org.jaxen.pattern.Pattern
-
Matches comment nodes
- COMMENT_TEST - クラス のstatic変数org.jaxen.pattern.NodeTypeTest
-
- CommentNodeStep - org.jaxen.exprのインタフェース
-
Represents the XPath node-test comment()
.
- compareDocumentPosition(Node) - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Compare relative position of this node to another nbode.
- ConcatFunction - org.jaxen.functionのクラス
-
4.2 string concat(string,string,string*)
Concatenates its arguments and returns the resulting string.
- ConcatFunction() - クラス のコンストラクタorg.jaxen.function.ConcatFunction
-
Create a new ConcatFunction
object.
- ContainsFunction - org.jaxen.functionのクラス
-
4.2 boolean contains(string,string)
The contains function returns true if the first argument
string contains the second argument string, and otherwise returns false.
- ContainsFunction() - クラス のコンストラクタorg.jaxen.function.ContainsFunction
-
Create a new ContainsFunction
object.
- Context - org.jaxenのクラス
-
Wrapper around implementation-specific objects used
as the context of an expression evaluation.
- Context(ContextSupport) - クラス のコンストラクタorg.jaxen.Context
-
Create a new context.
- ContextSupport - org.jaxenのクラス
-
Supporting context information for resolving
namespace prefixes, functions, and variables.
- ContextSupport() - クラス のコンストラクタorg.jaxen.ContextSupport
-
Construct an empty ContextSupport
.
- ContextSupport(NamespaceContext, FunctionContext, VariableContext, Navigator) - クラス のコンストラクタorg.jaxen.ContextSupport
-
Create a new ContextSupport object.
- convertDefaultStep(LocationPathPattern, DefaultStep) - クラス のstaticメソッドorg.jaxen.pattern.PatternParser
-
- convertExpr(Expr) - クラス のstaticメソッドorg.jaxen.pattern.PatternParser
-
- convertExpr(LocationPath) - クラス のstaticメソッドorg.jaxen.pattern.PatternParser
-
- convertStep(LocationPathPattern, Step) - クラス のstaticメソッドorg.jaxen.pattern.PatternParser
-
- convertToIterator(Object) - クラス のstaticメソッドorg.jaxen.expr.DefaultExpr
-
非推奨です。
- convertToList(Object) - クラス のstaticメソッドorg.jaxen.expr.DefaultExpr
-
非推奨です。
- CountFunction - org.jaxen.functionのクラス
-
4.1 number count(node-set)
The count function returns the number of nodes in the argument node-set.
- CountFunction() - クラス のコンストラクタorg.jaxen.function.CountFunction
-
Create a new CountFunction
object.
- createAbsoluteLocationPath() - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createAbsoluteLocationPath() - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Create a new empty absolute location path.
- createAbsoluteLocationPath() - クラス のメソッドorg.jaxen.pattern.PatternHandler
-
- createAdditiveExpr(Expr, Expr, int) - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createAdditiveExpr(Expr, Expr, int) - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Returns a new XPath additive expression.
- createAllNodeStep(int) - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createAllNodeStep(int) - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Create a step with a node() node-test.
- createAndExpr(Expr, Expr) - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createAndExpr(Expr, Expr) - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Returns a new XPath And expression.
- createCommentNodeStep(int) - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createCommentNodeStep(int) - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Create a step with a comment()
node-test.
- createEqualityExpr(Expr, Expr, int) - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createEqualityExpr(Expr, Expr, int) - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Returns a new XPath equality expression.
- createFilterExpr(Expr) - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createFilterExpr(Expr) - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Returns a new XPath filter expression.
- createFunctionCallExpr(String, String) - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createFunctionCallExpr(String, String) - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Create a new function call expression.
- createFunctionContext() - クラス のメソッドorg.jaxen.BaseXPath
-
Create a default FunctionContext
.
- createIterator(Object) - クラス のメソッドorg.jaxen.util.StackedIterator
-
非推奨です。
- createLiteralExpr(String) - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createLiteralExpr(String) - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Create a string literal expression.
- createMultiplicativeExpr(Expr, Expr, int) - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createMultiplicativeExpr(Expr, Expr, int) - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Returns a new XPath multiplicative expression.
- createNamespaceContext() - クラス のメソッドorg.jaxen.BaseXPath
-
Create a default NamespaceContext
.
- createNameStep(int, String, String) - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createNameStep(int, String, String) - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Create a step with a named node-test.
- createNumberExpr(int) - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createNumberExpr(double) - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createNumberExpr(int) - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Create a number expression.
- createNumberExpr(double) - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Create a number expression.
- createOrExpr(Expr, Expr) - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createOrExpr(Expr, Expr) - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Returns a new XPath Or expression.
- createPathExpr(FilterExpr, LocationPath) - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createPathExpr(FilterExpr, LocationPath) - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Create a new path expression.
- createPredicate(Expr) - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createPredicate(Expr) - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Create from the supplied expression.
- createPredicateSet() - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createPredicateSet() - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Create an empty predicate set.
- createProcessingInstructionNodeStep(int, String) - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createProcessingInstructionNodeStep(int, String) - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Create a step with a processing-instruction()
node-test.
- createRelationalExpr(Expr, Expr, int) - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createRelationalExpr(Expr, Expr, int) - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Returns a new XPath relational expression.
- createRelativeLocationPath() - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createRelativeLocationPath() - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Create a new empty relative location path.
- createRelativeLocationPath() - クラス のメソッドorg.jaxen.pattern.PatternHandler
-
- createTextNodeStep(int) - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createTextNodeStep(int) - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Create a step with a text()
node-test.
- createUnaryExpr(Expr, int) - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createUnaryExpr(Expr, int) - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Returns a new XPath unary expression.
- createUnionExpr(Expr, Expr) - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createUnionExpr(Expr, Expr) - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Returns a new XPath union expression.
- createVariableContext() - クラス のメソッドorg.jaxen.BaseXPath
-
Create a default VariableContext
.
- createVariableReferenceExpr(String, String) - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createVariableReferenceExpr(String, String) - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Create a new variable reference expression.
- createXPath(Expr) - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- createXPath(Expr) - インタフェース のメソッドorg.jaxen.expr.XPathFactory
-
Create a new XPathExpr
from an Expr
.
- Element - org.jaxen.javabeanのクラス
-
- Element(Element, String, Object) - クラス のコンストラクタorg.jaxen.javabean.Element
-
- ELEMENT_NODE - クラス のstatic変数org.jaxen.pattern.Pattern
-
Matches Element nodes
- ELEMENT_TEST - クラス のstatic変数org.jaxen.pattern.NodeTypeTest
-
- ElementIterator - org.jaxen.javabeanのクラス
-
- ElementIterator(Element, String, Iterator) - クラス のコンストラクタorg.jaxen.javabean.ElementIterator
-
- EMPTY_ITERATOR - クラス のstatic変数org.jaxen.JaxenConstants
-
An iterator with no elements.
- EMPTY_LIST_ITERATOR - クラス のstatic変数org.jaxen.JaxenConstants
-
A list iterator with no elements.
- endAbsoluteLocationPath() - クラス のメソッドorg.jaxen.JaxenHandler
-
- endAbsoluteLocationPath() - クラス のメソッドorg.jaxen.pattern.PatternHandler
-
- endAbsoluteLocationPath() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the end of an absolute location path expression.
- endAdditiveExpr(int) - クラス のメソッドorg.jaxen.JaxenHandler
-
- endAdditiveExpr(int) - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the end of an additive ('+' or '-') expression.
- endAllNodeStep() - クラス のメソッドorg.jaxen.JaxenHandler
-
- endAllNodeStep() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the end of a node() step.
- endAndExpr(boolean) - クラス のメソッドorg.jaxen.JaxenHandler
-
- endAndExpr(boolean) - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the end of an 'and' expression.
- endCommentNodeStep() - クラス のメソッドorg.jaxen.JaxenHandler
-
- endCommentNodeStep() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the end of a comment() step.
- endEqualityExpr(int) - クラス のメソッドorg.jaxen.JaxenHandler
-
- endEqualityExpr(int) - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the end of an equality ('=' or '!
- endFilterExpr() - クラス のメソッドorg.jaxen.JaxenHandler
-
- endFilterExpr() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the end of a filter expression.
- endFunction() - クラス のメソッドorg.jaxen.JaxenHandler
-
- endFunction() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the end of a function call
- endLocationPath() - クラス のメソッドorg.jaxen.JaxenHandler
-
- endLocationPath() - クラス のメソッドorg.jaxen.pattern.PatternHandler
-
- endMultiplicativeExpr(int) - クラス のメソッドorg.jaxen.JaxenHandler
-
- endMultiplicativeExpr(int) - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the start of a multiplicative ('*', 'div' or 'mod') expression.
- endNameStep() - クラス のメソッドorg.jaxen.JaxenHandler
-
- endNameStep() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the end of a NameStep
- endOrExpr(boolean) - クラス のメソッドorg.jaxen.JaxenHandler
-
- endOrExpr(boolean) - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the end of an 'or' expression.
- endPathExpr() - クラス のメソッドorg.jaxen.JaxenHandler
-
- endPathExpr() - クラス のメソッドorg.jaxen.pattern.PatternHandler
-
- endPathExpr() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the end of a path expression.
- endPredicate() - クラス のメソッドorg.jaxen.JaxenHandler
-
- endPredicate() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the end of a predicate.
- endProcessingInstructionNodeStep() - クラス のメソッドorg.jaxen.JaxenHandler
-
- endProcessingInstructionNodeStep() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the end of a processing-instruction(...) step.
- endRelationalExpr(int) - クラス のメソッドorg.jaxen.JaxenHandler
-
- endRelationalExpr(int) - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the start of a relational ('<', '>', '<=', or '>=') expression.
- endRelativeLocationPath() - クラス のメソッドorg.jaxen.JaxenHandler
-
- endRelativeLocationPath() - クラス のメソッドorg.jaxen.pattern.PatternHandler
-
- endRelativeLocationPath() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the end of a relative location path expression.
- endStep() - クラス のメソッドorg.jaxen.JaxenHandler
-
- endStep() - クラス のメソッドorg.jaxen.pattern.PatternHandler
-
- EndsWithFunction - org.jaxen.function.extのクラス
-
boolean ends-with(string,string)
- EndsWithFunction() - クラス のコンストラクタorg.jaxen.function.ext.EndsWithFunction
-
- endTextNodeStep() - クラス のメソッドorg.jaxen.JaxenHandler
-
- endTextNodeStep() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the end of a text() step.
- endUnaryExpr(int) - クラス のメソッドorg.jaxen.JaxenHandler
-
- endUnaryExpr(int) - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the end of a unary ('+' or '-') expression.
- endUnionExpr(boolean) - クラス のメソッドorg.jaxen.JaxenHandler
-
- endUnionExpr(boolean) - クラス のメソッドorg.jaxen.pattern.PatternHandler
-
- endUnionExpr(boolean) - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the end of a union ('|') expression.
- endXPath() - クラス のメソッドorg.jaxen.JaxenHandler
-
- endXPath() - クラス のメソッドorg.jaxen.pattern.PatternHandler
-
- endXPath() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the end of an XPath expression parse.
- ENTITY_REFERENCE_NODE - クラス のstatic変数org.jaxen.pattern.Pattern
-
Matches entity reference nodes
- EqualityExpr - org.jaxen.exprのインタフェース
-
Represents an XPath equality expression.
- equals(Object) - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Test for equivalence with another object.
- EQUALS - インタフェース のstatic変数org.jaxen.saxpath.Operator
-
The equal to operator =
.
- evaluate(Object) - クラス のメソッドorg.jaxen.BaseXPath
-
Evaluate this XPath against a given context.
- evaluate(Context) - クラス のメソッドorg.jaxen.expr.DefaultAbsoluteLocationPath
-
非推奨です。
- evaluate(Context) - クラス のメソッドorg.jaxen.expr.DefaultFilterExpr
-
非推奨です。
- evaluate(Context) - クラス のメソッドorg.jaxen.expr.DefaultFunctionCallExpr
-
非推奨です。
- evaluate(Context) - クラス のメソッドorg.jaxen.expr.DefaultNameStep
-
非推奨です。
Evaluate the context node set to find the new node set.
- evaluate(Context) - クラス のメソッドorg.jaxen.expr.DefaultStep
-
非推奨です。
- evaluate(Context) - クラス のメソッドorg.jaxen.expr.DefaultUnionExpr
-
非推奨です。
- evaluate(Context) - インタフェース のメソッドorg.jaxen.expr.Expr
-
Evaluate the expression in the given context, and return the result.
- evaluate(Context) - インタフェース のメソッドorg.jaxen.expr.Predicate
-
Evaluates this predicate's expression and returns the result.
- evaluate(Context) - インタフェース のメソッドorg.jaxen.expr.Step
-
For each node in the given context calls matches() for every node on the
axis, then filters the result by each of the predicates.
- evaluate(Object, Navigator) - クラス のstaticメソッドorg.jaxen.function.BooleanFunction
-
Convert the argument obj
to a Boolean
according to the following rules:
Lists are false if they're empty; true if they're not.
- evaluate(Object, Navigator) - クラス のstaticメソッドorg.jaxen.function.CeilingFunction
-
Returns the smallest integer greater than or equal to the argument.
- evaluate(List, Navigator) - クラス のstaticメソッドorg.jaxen.function.ConcatFunction
-
Converts each item in the list to a string and returns the
concatenation of these strings.
- evaluate(Object, Object, Navigator) - クラス のstaticメソッドorg.jaxen.function.ContainsFunction
-
Returns true if the first string contains the second string; false otherwise.
- evaluate(Object) - クラス のstaticメソッドorg.jaxen.function.CountFunction
-
Returns the number of nodes in the specified node-set.
- evaluate(Object, Object, Navigator) - クラス のstaticメソッドorg.jaxen.function.ext.EndsWithFunction
-
- evaluate(Context, Object) - クラス のstaticメソッドorg.jaxen.function.ext.EvaluateFunction
-
- evaluate(Object, Locale, Navigator) - クラス のstaticメソッドorg.jaxen.function.ext.LowerFunction
-
Converts the given string value to lower case using an optional Locale
- evaluate(Object, Locale, Navigator) - クラス のstaticメソッドorg.jaxen.function.ext.UpperFunction
-
Converts the given string value to upper case using an optional Locale
- evaluate() - クラス のstaticメソッドorg.jaxen.function.FalseFunction
-
Returns false.
- evaluate(Object, Navigator) - クラス のstaticメソッドorg.jaxen.function.FloorFunction
-
Returns the largest integer less than or equal to the argument.
- evaluate(List, Object, Navigator) - クラス のstaticメソッドorg.jaxen.function.IdFunction
-
Returns a list of the nodes with the specified IDs.
- evaluate(Context) - クラス のstaticメソッドorg.jaxen.function.LastFunction
-
Returns the number of nodes in the context node-set.
- evaluate(List, Navigator) - クラス のstaticメソッドorg.jaxen.function.LocalNameFunction
-
Returns the local-name of list.get(0)
- evaluate(List, Navigator) - クラス のstaticメソッドorg.jaxen.function.NameFunction
-
Returns the name of list.get(0)
- evaluate(List, Navigator) - クラス のstaticメソッドorg.jaxen.function.NamespaceUriFunction
-
Returns the namespace URI of list.get(0)
- evaluate(Object, Navigator) - クラス のstaticメソッドorg.jaxen.function.NormalizeSpaceFunction
-
Returns the string-value of strArg
after removing
all leading and trailing white space, and
replacing each other sequence of whitespace by a single space.
- evaluate(Object, Navigator) - クラス のstaticメソッドorg.jaxen.function.NotFunction
-
Returns Boolean.TRUE
if the boolean value of
obj
is false, and Boolean.FALSE
otherwise.
- evaluate(Object, Navigator) - クラス のstaticメソッドorg.jaxen.function.NumberFunction
-
Returns the number value of obj
.
- evaluate(Context) - クラス のstaticメソッドorg.jaxen.function.PositionFunction
-
Returns the position of the context node in the context node-set.
- evaluate(Object, Navigator) - クラス のstaticメソッドorg.jaxen.function.RoundFunction
-
Returns the integer nearest to the argument.
- evaluate(Object, Object, Navigator) - クラス のstaticメソッドorg.jaxen.function.StartsWithFunction
-
Returns true if the string-value of strArg
starts with the string-value of matchArg
.
- evaluate(Object, Navigator) - クラス のstaticメソッドorg.jaxen.function.StringFunction
-
Returns the XPath string-value of obj
.
- evaluate(Object, Navigator) - クラス のstaticメソッドorg.jaxen.function.StringLengthFunction
-
Returns the number of Unicode characters in the string-value of
an object.
- evaluate(Object, Object, Navigator) - クラス のstaticメソッドorg.jaxen.function.SubstringAfterFunction
-
Returns the part of strArg
that follows the first occurence
of matchArg
; or the empty string if the
strArg
does not contain matchArg
- evaluate(Object, Object, Navigator) - クラス のstaticメソッドorg.jaxen.function.SubstringBeforeFunction
-
Returns the part of strArg
that precedes the first occurence
of matchArg
; or the empty string if the
strArg
does not contain matchArg
- evaluate(Object, Navigator) - クラス のstaticメソッドorg.jaxen.function.SumFunction
-
Returns the sum of the items in a list.
- evaluate(Object, Object, Object, Navigator) - クラス のstaticメソッドorg.jaxen.function.TranslateFunction
-
Returns a copy of strArg
in which
characters found in fromArg
are replaced by
corresponding characters from toArg
.
- evaluate() - クラス のstaticメソッドorg.jaxen.function.TrueFunction
-
Returns true.
- evaluate(String, Navigator) - クラス のstaticメソッドorg.jaxen.function.xslt.DocumentFunction
-
- evaluate(Object) - クラス のメソッドorg.jaxen.javabean.JavaBeanXPath
-
- evaluate(Object) - インタフェース のメソッドorg.jaxen.XPath
-
Evaluate this XPath against the given context.
- evaluateAsBoolean(List, ContextSupport) - クラス のメソッドorg.jaxen.expr.PredicateSet
-
Returns true if any of the supplied nodes satisfy
all the predicates in the set.
- EvaluateFunction - org.jaxen.function.extのクラス
-
node-set evaluate(string)
- EvaluateFunction() - クラス のコンストラクタorg.jaxen.function.ext.EvaluateFunction
-
- evaluateParams(Context) - クラス のメソッドorg.jaxen.expr.DefaultFunctionCallExpr
-
非推奨です。
- evaluatePredicates(List, ContextSupport) - クラス のメソッドorg.jaxen.expr.PredicateSet
-
Returns all of the supplied nodes that satisfy
all the predicates in the set.
- Expr - org.jaxen.exprのインタフェース
-
Represents an XPath expression.
- get(int) - クラス のメソッドorg.jaxen.util.SingletonList
-
Returns the single element in the list.
- getAncestorAxisIterator(Object) - クラス のメソッドorg.jaxen.DefaultNavigator
-
- getAncestorAxisIterator(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve an Iterator
matching the ancestor
XPath axis.
- getAncestorOrSelfAxisIterator(Object) - クラス のメソッドorg.jaxen.DefaultNavigator
-
- getAncestorOrSelfAxisIterator(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve an Iterator
matching the
ancestor-or-self
XPath axis.
- getAttributeAxisIterator(Object) - クラス のメソッドorg.jaxen.DefaultNavigator
-
Throws UnsupportedAxisException
.
- getAttributeAxisIterator(Object) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Get an iterator over all attributes.
- getAttributeAxisIterator(Object) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- getAttributeAxisIterator(Object, String, String, String) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
Retrieves an Iterator
over the attribute elements that
match the supplied name.
- getAttributeAxisIterator(Object) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
- getAttributeAxisIterator(Object, String, String, String) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
Retrieves an Iterator
over the attribute elements that
match the supplied name.
- getAttributeAxisIterator(Object) - クラス のメソッドorg.jaxen.jdom.DocumentNavigator
-
- getAttributeAxisIterator(Object, String, String, String) - クラス のメソッドorg.jaxen.jdom.DocumentNavigator
-
Retrieves an Iterator
over the attribute elements that
match the supplied name.
- getAttributeAxisIterator(Object, String, String, String) - インタフェース のメソッドorg.jaxen.NamedAccessNavigator
-
Retrieve an Iterator
that returns the attribute
XPath axis where the names of the attributes match the supplied name
and optional namespace.
- getAttributeAxisIterator(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve an Iterator
matching the attribute
XPath axis.
- getAttributeAxisIterator(Object) - クラス のメソッドorg.jaxen.xom.DocumentNavigator
-
- getAttributeName(Object) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Get the local name of an attribute.
- getAttributeName(Object) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- getAttributeName(Object) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
- getAttributeName(Object) - クラス のメソッドorg.jaxen.jdom.DocumentNavigator
-
- getAttributeName(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve the local name of the given attribute node.
- getAttributeName(Object) - クラス のメソッドorg.jaxen.xom.DocumentNavigator
-
- getAttributeNamespaceUri(Object) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Get the namespace URI of an attribute.
- getAttributeNamespaceUri(Object) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- getAttributeNamespaceUri(Object) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
- getAttributeNamespaceUri(Object) - クラス のメソッドorg.jaxen.jdom.DocumentNavigator
-
- getAttributeNamespaceUri(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve the namespace URI of the given attribute node.
- getAttributeNamespaceUri(Object) - クラス のメソッドorg.jaxen.xom.DocumentNavigator
-
- getAttributeQName(Object) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Get the qualified name of an attribute.
- getAttributeQName(Object) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- getAttributeQName(Object) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
- getAttributeQName(Object) - クラス のメソッドorg.jaxen.jdom.DocumentNavigator
-
- getAttributeQName(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve the qualified name of the given attribute node.
- getAttributeQName(Object) - クラス のメソッドorg.jaxen.xom.DocumentNavigator
-
- getAttributes() - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Get the attribute nodes.
- getAttributeStringValue(Object) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Get the string value of an attribute node.
- getAttributeStringValue(Object) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- getAttributeStringValue(Object) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
- getAttributeStringValue(Object) - クラス のメソッドorg.jaxen.jdom.DocumentNavigator
-
- getAttributeStringValue(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve the string-value of an attribute node.
- getAttributeStringValue(Object) - クラス のメソッドorg.jaxen.xom.DocumentNavigator
-
- getAxis() - クラス のメソッドorg.jaxen.expr.DefaultStep
-
非推奨です。
- getAxis() - インタフェース のメソッドorg.jaxen.expr.Step
-
Get an identifier for the current axis.
- getAxisName() - クラス のメソッドorg.jaxen.expr.DefaultStep
-
非推奨です。
- getBaseURI() - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Return the base URI of the document containing this node.
- getCause() - 例外 のメソッドorg.jaxen.JaxenRuntimeException
-
Returns the exception that caused this exception.
- getCause() - 例外 のメソッドorg.jaxen.saxpath.SAXPathException
-
Returns the exception that caused this exception.
- getChildAxisIterator(Object) - クラス のメソッドorg.jaxen.DefaultNavigator
-
Throws UnsupportedAxisException
- getChildAxisIterator(Object) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Get an iterator over all of this node's children.
- getChildAxisIterator(Object) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- getChildAxisIterator(Object, String, String, String) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
Retrieves an Iterator
over the child elements that
match the supplied name.
- getChildAxisIterator(Object) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
- getChildAxisIterator(Object, String, String, String) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
Retrieves an Iterator
over the child elements that
match the supplied name.
- getChildAxisIterator(Object) - クラス のメソッドorg.jaxen.jdom.DocumentNavigator
-
- getChildAxisIterator(Object, String, String, String) - クラス のメソッドorg.jaxen.jdom.DocumentNavigator
-
Retrieves an Iterator
over the child elements that
match the supplied local name and namespace URI.
- getChildAxisIterator(Object, String, String, String) - インタフェース のメソッドorg.jaxen.NamedAccessNavigator
-
Retrieve an Iterator
that returns the child
XPath axis where the names of the children match the supplied name
and optional namespace.
- getChildAxisIterator(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve an Iterator
matching the child
XPath axis.
- getChildAxisIterator(Object) - クラス のメソッドorg.jaxen.xom.DocumentNavigator
-
- getChildNodes() - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Get the list of child nodes.
- getCommentStringValue(Object) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Get the string value of a comment node.
- getCommentStringValue(Object) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- getCommentStringValue(Object) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
- getCommentStringValue(Object) - クラス のメソッドorg.jaxen.jdom.DocumentNavigator
-
- getCommentStringValue(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve the string-value of a comment node.
- getCommentStringValue(Object) - クラス のメソッドorg.jaxen.xom.DocumentNavigator
-
- getContext(Object) - クラス のメソッドorg.jaxen.BaseXPath
-
Create a
Context
wrapper for the provided
implementation-specific object.
- getContext(Object) - クラス のメソッドorg.jaxen.javabean.JavaBeanXPath
-
- getContextSupport() - クラス のメソッドorg.jaxen.BaseXPath
-
- getContextSupport() - クラス のメソッドorg.jaxen.Context
-
Retrieve the ContextSupport
.
- getDescendantAxisIterator(Object) - クラス のメソッドorg.jaxen.DefaultNavigator
-
- getDescendantAxisIterator(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve an Iterator
matching the descendant
XPath axis.
- getDescendantOrSelfAxisIterator(Object) - クラス のメソッドorg.jaxen.DefaultNavigator
-
- getDescendantOrSelfAxisIterator(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve an Iterator
matching the
descendant-or-self
XPath axis.
- getDocument(String) - クラス のメソッドorg.jaxen.DefaultNavigator
-
Default implementation that always returns null.
- getDocument(String) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Use JAXP to load a namespace aware document from a given URI.
- getDocument(String) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- getDocument(String) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
- getDocument(String) - クラス のメソッドorg.jaxen.jdom.DocumentNavigator
-
- getDocument(String) - インタフェース のメソッドorg.jaxen.Navigator
-
Loads a document from the given URI
- getDocument(String) - クラス のメソッドorg.jaxen.xom.DocumentNavigator
-
- getDocumentNode(Object) - クラス のメソッドorg.jaxen.DefaultNavigator
-
- getDocumentNode(Object) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Get the top-level document node.
- getDocumentNode(Object) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- getDocumentNode(Object) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
- getDocumentNode(Object) - クラス のメソッドorg.jaxen.jdom.DocumentNavigator
-
- getDocumentNode(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Returns the document node that contains the given context node.
- getDocumentNode(Object) - クラス のメソッドorg.jaxen.xom.DocumentNavigator
-
- getElementById(Object, String) - クラス のメソッドorg.jaxen.DefaultNavigator
-
Default implementation that cannot find elements.
- getElementById(Object, String) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Returns the element whose ID is given by elementId.
- getElementById(Object, String) - インタフェース のメソッドorg.jaxen.Navigator
-
Returns the element whose ID is given by elementId.
- getElementName(Object) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Get the local name of an element.
- getElementName(Object) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- getElementName(Object) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
- getElementName(Object) - クラス のメソッドorg.jaxen.jdom.DocumentNavigator
-
- getElementName(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve the local name of the given element node.
- getElementName(Object) - クラス のメソッドorg.jaxen.xom.DocumentNavigator
-
- getElementNamespaceUri(Object) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Get the namespace URI of an element.
- getElementNamespaceUri(Object) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- getElementNamespaceUri(Object) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
- getElementNamespaceUri(Object) - クラス のメソッドorg.jaxen.jdom.DocumentNavigator
-
- getElementNamespaceUri(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve the namespace URI of the given element node.
- getElementNamespaceUri(Object) - クラス のメソッドorg.jaxen.xom.DocumentNavigator
-
- getElementQName(Object) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Get the qualified name of an element.
- getElementQName(Object) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- getElementQName(Object) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
- getElementQName(Object) - クラス のメソッドorg.jaxen.jdom.DocumentNavigator
-
- getElementQName(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve the qualified name of the given element node.
- getElementQName(Object) - クラス のメソッドorg.jaxen.xom.DocumentNavigator
-
- getElementStringValue(Object) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Get the string value of an element node.
- getElementStringValue(Object) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- getElementStringValue(Object) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
- getElementStringValue(Object) - クラス のメソッドorg.jaxen.jdom.DocumentNavigator
-
- getElementStringValue(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve the string-value of an element node.
- getElementStringValue(Object) - クラス のメソッドorg.jaxen.xom.DocumentNavigator
-
- getExpr() - クラス のメソッドorg.jaxen.expr.DefaultFilterExpr
-
非推奨です。
- getExpr() - インタフェース のメソッドorg.jaxen.expr.FilterExpr
-
- getExpr() - インタフェース のメソッドorg.jaxen.expr.Predicate
-
Returns the expression in this predicate.
- getExpr() - インタフェース のメソッドorg.jaxen.expr.UnaryExpr
-
Returns the expression following the minus sign.
- getFeature(String, String) - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Returns the value of the requested feature.
- getFilterExpr() - インタフェース のメソッドorg.jaxen.expr.PathExpr
-
Returns the filter expression that starts the path expression.
- getFirstChild() - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Get the first child node.
- getFollowingAxisIterator(Object) - クラス のメソッドorg.jaxen.DefaultNavigator
-
- getFollowingAxisIterator(Object) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Get an iterator over all following nodes, depth-first.
- getFollowingAxisIterator(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve an Iterator
matching the following
XPath axis.
- getFollowingSiblingAxisIterator(Object) - クラス のメソッドorg.jaxen.DefaultNavigator
-
- getFollowingSiblingAxisIterator(Object) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Get an iterator over all following siblings.
- getFollowingSiblingAxisIterator(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve an Iterator
matching the
following-sibling
XPath axis.
- getFunction(String, String, String) - クラス のメソッドorg.jaxen.Context
-
Retrieve a Function
.
- getFunction(String, String, String) - クラス のメソッドorg.jaxen.ContextSupport
-
Retrieve a Function
.
- getFunction(String, String, String) - インタフェース のメソッドorg.jaxen.FunctionContext
-
An implementation should return a Function
implementation object
based on the namespace URI and local name of the function-call
expression.
- getFunction(String, String, String) - クラス のメソッドorg.jaxen.SimpleFunctionContext
-
- getFunctionContext() - クラス のメソッドorg.jaxen.BaseXPath
-
Retrieve the FunctionContext
used by this XPath
expression.
- getFunctionContext() - クラス のメソッドorg.jaxen.ContextSupport
-
Retrieve the FunctionContext
.
- getFunctionContext() - インタフェース のメソッドorg.jaxen.XPath
-
Retrieve the FunctionContext
used by this XPath
expression.
- getFunctionName() - クラス のメソッドorg.jaxen.expr.DefaultFunctionCallExpr
-
非推奨です。
- getFunctionName() - インタフェース のメソッドorg.jaxen.expr.FunctionCallExpr
-
Returns the local name of the function.
- getInstance() - クラス のstaticメソッドorg.jaxen.dom.DocumentNavigator
-
Get a constant DocumentNavigator for efficiency.
- getInstance() - クラス のstaticメソッドorg.jaxen.dom4j.DocumentNavigator
-
Retrieve the singleton instance of this DocumentNavigator
.
- getInstance() - クラス のstaticメソッドorg.jaxen.javabean.DocumentNavigator
-
Retrieve the singleton instance of this DocumentNavigator
.
- getInstance() - クラス のstaticメソッドorg.jaxen.jdom.DocumentNavigator
-
- getInstance() - クラス のstaticメソッドorg.jaxen.pattern.AnyChildNodeTest
-
- getInstance() - クラス のstaticメソッドorg.jaxen.pattern.AnyNodeTest
-
- getInstance() - クラス のstaticメソッドorg.jaxen.pattern.NoNodeTest
-
- getInstance() - クラス のstaticメソッドorg.jaxen.XPathFunctionContext
-
Retrieve the default function context
- getIterableAxis() - クラス のメソッドorg.jaxen.expr.DefaultStep
-
非推奨です。
- getIterableAxis(int) - クラス のメソッドorg.jaxen.expr.DefaultXPathFactory
-
- getJDOMElement() - クラス のメソッドorg.jaxen.jdom.XPathNamespace
-
Returns the JDOM element from which this namespace node has been
retrieved.
- getJDOMNamespace() - クラス のメソッドorg.jaxen.jdom.XPathNamespace
-
Returns the JDOM namespace object of this namespace node; the JDOM
namespace object contains the prefix and URI of the namespace.
- getLastChild() - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Get the last child node.
- getLHS() - インタフェース のメソッドorg.jaxen.expr.BinaryExpr
-
Returns the left-hand side of the binary expression.
- getLHS() - クラス のメソッドorg.jaxen.pattern.UnionPattern
-
- getLiteral() - インタフェース のメソッドorg.jaxen.expr.LiteralExpr
-
Returns the contents of the string literal, not including the
quote marks.
- getLocale(Object, Navigator) - クラス のメソッドorg.jaxen.function.ext.LocaleFunctionSupport
-
Attempts to convert the given function argument value
into a Locale either via casting, extracting it from a List
or looking up the named Locale using reflection.
- getLocalName() - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Get the XPath name of the namespace node;; i.e. the
namespace prefix.
- getLocalName() - クラス のメソッドorg.jaxen.expr.DefaultNameStep
-
非推奨です。
Gets the local name.
- getLocalName() - インタフェース のメソッドorg.jaxen.expr.NameStep
-
Returns the local name of the matched node
- getLocationPath() - インタフェース のメソッドorg.jaxen.expr.PathExpr
-
Returns the location path part of this path expression.
- getMatchesNodeName() - クラス のメソッドorg.jaxen.pattern.Pattern
-
For patterns which only match an ATTRIBUTE_NODE or an
ELEMENT_NODE then this pattern may return the name of the
element or attribute it matches.
- getMatchesNodeName() - クラス のメソッドorg.jaxen.pattern.UnionPattern
-
- getMatchType() - クラス のメソッドorg.jaxen.pattern.AnyChildNodeTest
-
- getMatchType() - クラス のメソッドorg.jaxen.pattern.AnyNodeTest
-
- getMatchType() - クラス のメソッドorg.jaxen.pattern.LocationPathPattern
-
- getMatchType() - クラス のメソッドorg.jaxen.pattern.NamespaceTest
-
- getMatchType() - クラス のメソッドorg.jaxen.pattern.NameTest
-
- getMatchType() - クラス のメソッドorg.jaxen.pattern.NodeTypeTest
-
- getMatchType() - クラス のメソッドorg.jaxen.pattern.NoNodeTest
-
- getMatchType() - クラス のメソッドorg.jaxen.pattern.Pattern
-
Returns the type of node the pattern matches.
- getMatchType() - クラス のメソッドorg.jaxen.pattern.TextNodeTest
-
- getMatchType() - クラス のメソッドorg.jaxen.pattern.UnionPattern
-
- getMultilineMessage() - 例外 のメソッドorg.jaxen.saxpath.XPathSyntaxException
-
Returns a long formatted description of the error,
including line breaks.
- getMultilineMessage() - 例外 のメソッドorg.jaxen.XPathSyntaxException
-
Retrieve the friendly multi-line error message.
- getName() - クラス のメソッドorg.jaxen.expr.DefaultProcessingInstructionNodeStep
-
非推奨です。
- getName() - インタフェース のメソッドorg.jaxen.expr.ProcessingInstructionNodeStep
-
Returns the target matched by this processing instruction node-step.
- getName() - クラス のメソッドorg.jaxen.javabean.Element
-
- getNamespaceAxisIterator(Object) - クラス のメソッドorg.jaxen.DefaultNavigator
-
Throws UnsupportedAxisException
.
- getNamespaceAxisIterator(Object) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Get an iterator over all declared namespaces.
- getNamespaceAxisIterator(Object) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- getNamespaceAxisIterator(Object) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
- getNamespaceAxisIterator(Object) - クラス のメソッドorg.jaxen.jdom.DocumentNavigator
-
- getNamespaceAxisIterator(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve an Iterator
matching the namespace
XPath axis.
- getNamespaceAxisIterator(Object) - クラス のメソッドorg.jaxen.xom.DocumentNavigator
-
- getNamespaceContext() - クラス のメソッドorg.jaxen.BaseXPath
-
Retrieve the NamespaceContext
used by this XPath
expression.
- getNamespaceContext() - クラス のメソッドorg.jaxen.ContextSupport
-
Retrieve the NamespaceContext
.
- getNamespaceContext() - インタフェース のメソッドorg.jaxen.XPath
-
Retrieve the NamespaceContext
used by this XPath
expression.
- getNamespacePrefix(Object) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Get the prefix value of a namespace node.
- getNamespacePrefix(Object) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- getNamespacePrefix(Object) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
- getNamespacePrefix(Object) - クラス のメソッドorg.jaxen.jdom.DocumentNavigator
-
- getNamespacePrefix(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve the namespace prefix of a namespace node.
- getNamespacePrefix(Object) - クラス のメソッドorg.jaxen.xom.DocumentNavigator
-
- getNamespaceStringValue(Object) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Get the string value of a namespace node.
- getNamespaceStringValue(Object) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- getNamespaceStringValue(Object) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
- getNamespaceStringValue(Object) - クラス のメソッドorg.jaxen.jdom.DocumentNavigator
-
- getNamespaceStringValue(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve the string-value of a namespace node.
- getNamespaceStringValue(Object) - クラス のメソッドorg.jaxen.xom.DocumentNavigator
-
- getNamespaceURI() - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Get the namespace URI of this node.
- getNavigator() - クラス のメソッドorg.jaxen.BaseXPath
-
Retrieve the XML object-model-specific
Navigator
for us in evaluating this XPath expression.
- getNavigator() - クラス のメソッドorg.jaxen.Context
-
Retrieve the current Navigator
.
- getNavigator() - クラス のメソッドorg.jaxen.ContextSupport
-
Retrieve the Navigator
.
- getNavigator() - クラス のメソッドorg.jaxen.util.StackedIterator
-
非推奨です。
- getNavigator() - インタフェース のメソッドorg.jaxen.XPath
-
Retrieve the XML object-model-specific
Navigator
used to evaluate this XPath expression.
- getNestedException() - 例外 のメソッドorg.jaxen.FunctionCallException
-
- getNextSibling() - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Get the next sibling node.
- getNodeName() - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Get the namespace prefix.
- getNodeSet() - クラス のメソッドorg.jaxen.Context
-
Retrieve the context node-set.
- getNodeType(Object) - クラス のメソッドorg.jaxen.DefaultNavigator
-
- getNodeType() - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Get the node type.
- getNodeType(Object) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- getNodeType(Object) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
- getNodeType(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Returns a number that identifies the type of node that the given
object represents in this navigator.
- getNodeValue() - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Get the namespace URI.
- getNumber() - インタフェース のメソッドorg.jaxen.expr.NumberExpr
-
Returns a java.lang.Double
representing the number.
- getObject() - クラス のメソッドorg.jaxen.javabean.Element
-
- getOperator() - インタフェース のメソッドorg.jaxen.expr.BinaryExpr
-
Returns the operator for the binary expression such as "+" or
"div".
- getOperator() - クラス のメソッドorg.jaxen.expr.DefaultUnionExpr
-
非推奨です。
- getOwnerDocument() - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Get the owner document.
- getParameters() - クラス のメソッドorg.jaxen.expr.DefaultFunctionCallExpr
-
非推奨です。
- getParameters() - インタフェース のメソッドorg.jaxen.expr.FunctionCallExpr
-
Returns the the ordered list of function arguments.
- getParent() - クラス のメソッドorg.jaxen.javabean.Element
-
- getParentAxisIterator(Object) - クラス のメソッドorg.jaxen.DefaultNavigator
-
Throws UnsupportedAxisException
- getParentAxisIterator(Object) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Get a (single-member) iterator over this node's parent.
- getParentAxisIterator(Object) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- getParentAxisIterator(Object) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
- getParentAxisIterator(Object) - クラス のメソッドorg.jaxen.jdom.DocumentNavigator
-
- getParentAxisIterator(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve an Iterator
matching the parent
XPath axis.
- getParentAxisIterator(Object) - クラス のメソッドorg.jaxen.xom.DocumentNavigator
-
- getParentNode(Object) - クラス のメソッドorg.jaxen.DefaultNavigator
-
Default inefficient implementation.
- getParentNode(Object) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Return the XPath parent of the supplied DOM node.
- getParentNode() - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Get the parent node.
- getParentNode(Object) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- getParentNode(Object) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
- getParentNode(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Returns the parent of the given context node.
- getParentNode(Object) - クラス のメソッドorg.jaxen.xom.DocumentNavigator
-
- getPattern() - クラス のメソッドorg.jaxen.pattern.PatternHandler
-
Retrieve the simplified Jaxen Pattern expression tree.
- getPattern(boolean) - クラス のメソッドorg.jaxen.pattern.PatternHandler
-
Retrieve the Jaxen Pattern expression tree, optionally
simplified.
- getPosition() - クラス のメソッドorg.jaxen.Context
-
Retrieve current position in the context node-set.
- getPosition() - 例外 のメソッドorg.jaxen.saxpath.XPathSyntaxException
-
Returns the index of the character at which the syntax error was detected
in the XPath expression.
- getPosition() - 例外 のメソッドorg.jaxen.XPathSyntaxException
-
Retrieve the position of the error.
- getPositionMarker() - 例外 のメソッドorg.jaxen.XPathSyntaxException
-
Retrieve a string useful for denoting where
the error occurred.
- getPrecedingAxisIterator(Object) - クラス のメソッドorg.jaxen.DefaultNavigator
-
- getPrecedingAxisIterator(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve an Iterator
matching the preceding
XPath axis.
- getPrecedingAxisIterator(Object) - クラス のメソッドorg.jaxen.xom.DocumentNavigator
-
- getPrecedingSiblingAxisIterator(Object) - クラス のメソッドorg.jaxen.DefaultNavigator
-
- getPrecedingSiblingAxisIterator(Object) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Get an iterator over all preceding siblings.
- getPrecedingSiblingAxisIterator(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve an Iterator
matching the
preceding-sibling
XPath axis.
- getPrecedingSiblingAxisIterator(Object) - クラス のメソッドorg.jaxen.xom.DocumentNavigator
-
- getPredicates() - クラス のメソッドorg.jaxen.expr.DefaultFilterExpr
-
非推奨です。
- getPredicates() - クラス のメソッドorg.jaxen.expr.DefaultStep
-
非推奨です。
- getPredicates() - インタフェース のメソッドorg.jaxen.expr.Predicated
-
Returns a possibly empty list of predicates.
- getPredicates() - クラス のメソッドorg.jaxen.expr.PredicateSet
-
Returns the list containing the predicates.
- getPredicateSet() - クラス のメソッドorg.jaxen.expr.DefaultFilterExpr
-
非推奨です。
- getPredicateSet() - クラス のメソッドorg.jaxen.expr.DefaultStep
-
非推奨です。
- getPredicateSet() - インタフェース のメソッドorg.jaxen.expr.Predicated
-
Returns a possibly empty set of predicates.
- getPrefix() - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Get the namespace prefix of this node.
- getPrefix() - クラス のメソッドorg.jaxen.expr.DefaultFunctionCallExpr
-
非推奨です。
- getPrefix() - クラス のメソッドorg.jaxen.expr.DefaultNameStep
-
非推奨です。
Gets the namespace prefix.
- getPrefix() - インタフェース のメソッドorg.jaxen.expr.FunctionCallExpr
-
Returns the namespace prefix of the function.
- getPrefix() - インタフェース のメソッドorg.jaxen.expr.NameStep
-
Returns the namespace prefix of the matched node.
- getPrefix() - インタフェース のメソッドorg.jaxen.expr.VariableReferenceExpr
-
Returns the namespace prefix of the variable.
- getPreviousSibling() - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Get the previous sibling node.
- getPriority() - クラス のメソッドorg.jaxen.pattern.AnyChildNodeTest
-
- getPriority() - クラス のメソッドorg.jaxen.pattern.AnyNodeTest
-
- getPriority() - クラス のメソッドorg.jaxen.pattern.LocationPathPattern
-
- getPriority() - クラス のメソッドorg.jaxen.pattern.NamespaceTest
-
- getPriority() - クラス のメソッドorg.jaxen.pattern.NameTest
-
- getPriority() - クラス のメソッドorg.jaxen.pattern.NodeTypeTest
-
- getPriority() - クラス のメソッドorg.jaxen.pattern.NoNodeTest
-
- getPriority() - クラス のメソッドorg.jaxen.pattern.Pattern
-
- getPriority() - クラス のメソッドorg.jaxen.pattern.TextNodeTest
-
- getProcessingInstructionData(Object) - クラス のメソッドorg.jaxen.DefaultNavigator
-
- getProcessingInstructionData(Object) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Get the data of a processing instruction node.
- getProcessingInstructionData(Object) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- getProcessingInstructionData(Object) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
- getProcessingInstructionData(Object) - クラス のメソッドorg.jaxen.jdom.DocumentNavigator
-
- getProcessingInstructionData(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve the data of a processing-instruction.
- getProcessingInstructionData(Object) - クラス のメソッドorg.jaxen.xom.DocumentNavigator
-
- getProcessingInstructionTarget(Object) - クラス のメソッドorg.jaxen.DefaultNavigator
-
- getProcessingInstructionTarget(Object) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Get the target of a processing instruction node.
- getProcessingInstructionTarget(Object) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- getProcessingInstructionTarget(Object) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
- getProcessingInstructionTarget(Object) - クラス のメソッドorg.jaxen.jdom.DocumentNavigator
-
- getProcessingInstructionTarget(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve the target of a processing-instruction.
- getProcessingInstructionTarget(Object) - クラス のメソッドorg.jaxen.xom.DocumentNavigator
-
- getRHS() - インタフェース のメソッドorg.jaxen.expr.BinaryExpr
-
Returns the right-hand side of the binary expression.
- getRHS() - クラス のメソッドorg.jaxen.pattern.UnionPattern
-
- getRootExpr() - クラス のメソッドorg.jaxen.BaseXPath
-
Retrieve the root expression of the internal
compiled form of this XPath expression.
- getRootExpr() - クラス のメソッドorg.jaxen.expr.DefaultXPathExpr
-
非推奨です。
- getRootExpr() - インタフェース のメソッドorg.jaxen.expr.XPathExpr
-
Returns the wrapped expression object.
- getSAXReader() - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- getSelfAxisIterator(Object) - クラス のメソッドorg.jaxen.DefaultNavigator
-
- getSelfAxisIterator(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve an Iterator
matching the self
XPath
axis.
- getSize() - クラス のメソッドorg.jaxen.Context
-
Retrieve the size of the current context node-set.
- getSteps() - インタフェース のメソッドorg.jaxen.expr.LocationPath
-
Returns the ordered list of steps in this location path.
- getText() - クラス のメソッドorg.jaxen.expr.DefaultAbsoluteLocationPath
-
非推奨です。
- getText() - クラス のメソッドorg.jaxen.expr.DefaultAllNodeStep
-
非推奨です。
- getText() - クラス のメソッドorg.jaxen.expr.DefaultCommentNodeStep
-
非推奨です。
- getText() - クラス のメソッドorg.jaxen.expr.DefaultFilterExpr
-
非推奨です。
- getText() - クラス のメソッドorg.jaxen.expr.DefaultFunctionCallExpr
-
非推奨です。
- getText() - クラス のメソッドorg.jaxen.expr.DefaultNameStep
-
非推奨です。
Gets the step as a fully defined XPath.
- getText() - クラス のメソッドorg.jaxen.expr.DefaultProcessingInstructionNodeStep
-
非推奨です。
- getText() - クラス のメソッドorg.jaxen.expr.DefaultStep
-
非推奨です。
- getText() - クラス のメソッドorg.jaxen.expr.DefaultTextNodeStep
-
非推奨です。
- getText() - クラス のメソッドorg.jaxen.expr.DefaultXPathExpr
-
非推奨です。
- getText() - インタフェース のメソッドorg.jaxen.expr.Expr
-
Returns a String containing the XPath expression.
- getText() - インタフェース のメソッドorg.jaxen.expr.Predicate
-
Returns the string form of the predicate,
including the square brackets.
- getText() - クラス のメソッドorg.jaxen.expr.PredicateSet
-
Returns the XPath string containing each of the predicates.
- getText() - インタフェース のメソッドorg.jaxen.expr.Step
-
Returns a String
containing the XPath expression.
- getText() - インタフェース のメソッドorg.jaxen.expr.XPathExpr
-
Returns a String containing the XPath expression.
- getText() - クラス のメソッドorg.jaxen.pattern.AnyChildNodeTest
-
- getText() - クラス のメソッドorg.jaxen.pattern.AnyNodeTest
-
- getText() - クラス のメソッドorg.jaxen.pattern.LocationPathPattern
-
- getText() - クラス のメソッドorg.jaxen.pattern.NamespaceTest
-
- getText() - クラス のメソッドorg.jaxen.pattern.NameTest
-
- getText() - クラス のメソッドorg.jaxen.pattern.NodeTypeTest
-
- getText() - クラス のメソッドorg.jaxen.pattern.NoNodeTest
-
- getText() - クラス のメソッドorg.jaxen.pattern.Pattern
-
Returns a textual representation of this pattern
- getText() - クラス のメソッドorg.jaxen.pattern.TextNodeTest
-
- getText() - クラス のメソッドorg.jaxen.pattern.UnionPattern
-
- getTextContent() - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Return the namespace URI.
- getTextStringValue(Object) - クラス のメソッドorg.jaxen.dom.DocumentNavigator
-
Get the string value of text.
- getTextStringValue(Object) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- getTextStringValue(Object) - クラス のメソッドorg.jaxen.javabean.DocumentNavigator
-
- getTextStringValue(Object) - クラス のメソッドorg.jaxen.jdom.DocumentNavigator
-
- getTextStringValue(Object) - インタフェース のメソッドorg.jaxen.Navigator
-
Retrieve the string-value of a text node.
- getTextStringValue(Object) - クラス のメソッドorg.jaxen.xom.DocumentNavigator
-
- getUnionPatterns() - クラス のメソッドorg.jaxen.pattern.Pattern
-
If this pattern is a union pattern then this
method should return an array of patterns which
describe the union pattern, which should contain more than one pattern.
- getUnionPatterns() - クラス のメソッドorg.jaxen.pattern.UnionPattern
-
- getURI(Object, Context) - クラス のメソッドorg.jaxen.pattern.NamespaceTest
-
Returns the URI of the current prefix or "" if no URI can be found
- getUserData(String) - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Returns the user data associated with the given key.
- getVariableContext() - クラス のメソッドorg.jaxen.BaseXPath
-
Retrieve the VariableContext
used by this XPath
expression.
- getVariableContext() - クラス のメソッドorg.jaxen.ContextSupport
-
Retrieve the VariableContext
.
- getVariableContext() - インタフェース のメソッドorg.jaxen.XPath
-
Retrieve the VariableContext
used by this XPath
expression.
- getVariableName() - インタフェース のメソッドorg.jaxen.expr.VariableReferenceExpr
-
Returns the local name of the variable.
- getVariableValue(String, String, String) - クラス のメソッドorg.jaxen.Context
-
Retrieve a variable value.
- getVariableValue(String, String, String) - クラス のメソッドorg.jaxen.ContextSupport
-
Retrieve a variable value.
- getVariableValue(String, String, String) - クラス のメソッドorg.jaxen.SimpleVariableContext
-
- getVariableValue(String, String, String) - インタフェース のメソッドorg.jaxen.VariableContext
-
An implementation should return the value of an XPath variable
based on the namespace URI and local name of the variable-reference
expression.
- getXPath() - 例外 のメソッドorg.jaxen.saxpath.XPathSyntaxException
-
Returns the syntactically incorrect XPath expression.
- getXPath() - 例外 のメソッドorg.jaxen.XPathSyntaxException
-
Retrieve the expression containing the error.
- getXPathExpr() - クラス のメソッドorg.jaxen.JaxenHandler
-
Retrieve the simplified Jaxen XPath expression tree.
- getXPathExpr(boolean) - クラス のメソッドorg.jaxen.JaxenHandler
-
Retrieve the Jaxen XPath expression tree, optionally
simplified.
- getXPathFactory() - クラス のメソッドorg.jaxen.JaxenHandler
-
Retrieve the Jaxen XPathFactory
used
during the parse to construct the XPath expression tree.
- getXPathHandler() - インタフェース のメソッドorg.jaxen.saxpath.SAXPathEventSource
-
Retrieve the current
XPathHandler
which receives the event callbacks.
- GREATER_THAN - インタフェース のstatic変数org.jaxen.saxpath.Operator
-
The greater-than operator >
- GREATER_THAN_EQUALS - インタフェース のstatic変数org.jaxen.saxpath.Operator
-
The greater-than or equals operator >=
- namedAccessIterator(Object, ContextSupport, String, String, String) - クラス のメソッドorg.jaxen.expr.iter.IterableAttributeAxis
-
Gets the iterator for the attribute axis that supports named access.
- namedAccessIterator(Object, ContextSupport, String, String, String) - クラス のメソッドorg.jaxen.expr.iter.IterableAxis
-
Gets the iterator for a specific XPath axis that supports named access.
- namedAccessIterator(Object, ContextSupport, String, String, String) - クラス のメソッドorg.jaxen.expr.iter.IterableChildAxis
-
Gets an iterator for the child XPath axis that supports named access.
- NamedAccessNavigator - org.jaxenのインタフェース
-
Interface for navigating around an arbitrary object model
accessing certain parts by name for performance.
- NameFunction - org.jaxen.functionのクラス
-
4.1 string name(node-set?
- NameFunction() - クラス のコンストラクタorg.jaxen.function.NameFunction
-
Create a new NameFunction
object.
- NAMESPACE - クラス のstatic変数org.jaxen.saxpath.Axis
-
The namespace
axis
- NAMESPACE_NODE - クラス のstatic変数org.jaxen.dom.NamespaceNode
-
Constant: this is a NamespaceNode.
- NAMESPACE_NODE - クラス のstatic変数org.jaxen.pattern.Pattern
-
Matches a Namespace Node
- NAMESPACE_TEST - クラス のstatic変数org.jaxen.pattern.NodeTypeTest
-
- NamespaceContext - org.jaxenのインタフェース
-
Resolves namespace prefixes to namespace URIs.
- NamespaceNode - org.jaxen.domのクラス
-
Extension DOM2/DOM3 node type for a namespace node.
- NamespaceNode(Node, String, String) - クラス のコンストラクタorg.jaxen.dom.NamespaceNode
-
Create a new NamespaceNode.
- NamespaceTest - org.jaxen.patternのクラス
-
NamespaceTest
tests for a given namespace URI.
- NamespaceTest(String, short) - クラス のコンストラクタorg.jaxen.pattern.NamespaceTest
-
- NamespaceUriFunction - org.jaxen.functionのクラス
-
4.1
string namespace-uri(node-set?
- NamespaceUriFunction() - クラス のコンストラクタorg.jaxen.function.NamespaceUriFunction
-
Create a new NamespaceUriFunction
object.
- NameStep - org.jaxen.exprのインタフェース
-
Represents an XPath name test such as para
or
svg:rect
.
- NameTest - org.jaxen.patternのクラス
-
NameTest
tests for a node name.
- NameTest(String, short) - クラス のコンストラクタorg.jaxen.pattern.NameTest
-
- navigationStep(Step) - クラス のstaticメソッドorg.jaxen.pattern.PatternParser
-
- Navigator - org.jaxenのインタフェース
-
Interface for navigating around an arbitrary object
model, using XPath semantics.
- NEGATIVE - インタフェース のstatic変数org.jaxen.saxpath.Operator
-
Unary -
- next() - クラス のメソッドorg.jaxen.javabean.ElementIterator
-
- next() - クラス のメソッドorg.jaxen.util.AncestorOrSelfAxisIterator
-
Returns the next ancestor-or-self node.
- next() - クラス のメソッドorg.jaxen.util.DescendantAxisIterator
-
Returns the next descendant node.
- next() - クラス のメソッドorg.jaxen.util.FollowingAxisIterator
-
Returns the next following node.
- next() - クラス のメソッドorg.jaxen.util.FollowingSiblingAxisIterator
-
Returns the next following sibling.
- next() - クラス のメソッドorg.jaxen.util.LinkedIterator
-
非推奨です。
- next() - クラス のメソッドorg.jaxen.util.PrecedingAxisIterator
-
Returns the next preceding node.
- next() - クラス のメソッドorg.jaxen.util.PrecedingSiblingAxisIterator
-
Returns the next preceding sibling.
- next() - クラス のメソッドorg.jaxen.util.SingleObjectIterator
-
Returns the single element in this iterator if it has not yet
been seen.
- next() - クラス のメソッドorg.jaxen.util.StackedIterator
-
非推奨です。
- NO_NODE - クラス のstatic変数org.jaxen.pattern.Pattern
-
Matches no nodes
- NO_OP - インタフェース のstatic変数org.jaxen.saxpath.Operator
-
Indicates that we're passing through a grammar production without
actually activating it.
- NODE_ADOPTED - インタフェース のstatic変数org.w3c.dom.UserDataHandler
-
- NODE_CLONED - インタフェース のstatic変数org.w3c.dom.UserDataHandler
-
- NODE_DELETED - インタフェース のstatic変数org.w3c.dom.UserDataHandler
-
- NODE_IMPORTED - インタフェース のstatic変数org.w3c.dom.UserDataHandler
-
- NODE_RENAMED - インタフェース のstatic変数org.w3c.dom.UserDataHandler
-
- NodeTest - org.jaxen.patternのクラス
-
NodeTest
is a simple test on a node.
- NodeTest() - クラス のコンストラクタorg.jaxen.pattern.NodeTest
-
- NodeTypeTest - org.jaxen.patternのクラス
-
NodeTypeTest
matches if the node is of a certain type
such as element, attribute, comment, text, processing instruction and so forth.
- NodeTypeTest(short) - クラス のコンストラクタorg.jaxen.pattern.NodeTypeTest
-
- NoNodeTest - org.jaxen.patternのクラス
-
NoNodeTest
matches no nodes.
- NoNodeTest() - クラス のコンストラクタorg.jaxen.pattern.NoNodeTest
-
- normalize() - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Normalize the text descendants of this node.
- NormalizeSpaceFunction - org.jaxen.functionのクラス
-
4.2 string normalize-space(string)
The normalize-space function
returns the argument string with whitespace normalized by stripping
leading and trailing whitespace and replacing sequences of whitespace
characters by a single space.
- NormalizeSpaceFunction() - クラス のコンストラクタorg.jaxen.function.NormalizeSpaceFunction
-
Create a new NormalizeSpaceFunction
object.
- NOT_EQUALS - インタフェース のstatic変数org.jaxen.saxpath.Operator
-
The not equal to operator !
- NotFunction - org.jaxen.functionのクラス
-
4.3 boolean not(boolean)
The not function returns true if its argument is false, and false otherwise.
- NotFunction() - クラス のコンストラクタorg.jaxen.function.NotFunction
-
Create a new NotFunction
object.
- number(int) - クラス のメソッドorg.jaxen.JaxenHandler
-
- number(double) - クラス のメソッドorg.jaxen.JaxenHandler
-
- number(int) - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of a number expression.
- number(double) - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of a number expression.
- NumberExpr - org.jaxen.exprのインタフェース
-
Represents an XPath floating point literal.
- NumberFunction - org.jaxen.functionのクラス
-
4.4 number number(object)
The number function converts
its argument to a number as follows:
a string that consists of optional whitespace followed by an optional
minus sign followed by a Number followed by
whitespace is converted to the IEEE 754 number that is nearest
(according to the IEEE 754 round-to-nearest rule) to the mathematical
value represented by the string; any other string is converted to NaN
boolean true is converted to 1; boolean false is converted to 0
a node-set is first converted to a string as if by a call to the string function and then converted
in the same way as a string argument
an object of a type other than the four basic types is converted to a
number in a way that is dependent on that type
If the argument is omitted, it defaults to a node-set with the
context node as its only member.
- NumberFunction() - クラス のコンストラクタorg.jaxen.function.NumberFunction
-
Create a new NumberFunction
object.
- numberValueOf(Object) - クラス のメソッドorg.jaxen.BaseXPath
-
Retrieve a number-value interpretation of this XPath
expression when evaluated against a given context.
- numberValueOf(Object) - インタフェース のメソッドorg.jaxen.XPath
-
Retrieve the number-value of the first node in document order
returned by this XPath expression when evaluated in
the given context.
- SAXPathEventSource - org.jaxen.saxpathのインタフェース
-
Interface for any object capable of generating
SAXPath events to an
XPathHandler
.
- SAXPathException - org.jaxen.saxpathの例外
-
Base of all SAXPath exceptions.
- SAXPathException(String) - 例外 のコンストラクタorg.jaxen.saxpath.SAXPathException
-
Create a new SAXPathException with a given message.
- SAXPathException(Throwable) - 例外 のコンストラクタorg.jaxen.saxpath.SAXPathException
-
Create a new SAXPathException based on another exception
- SAXPathException(String, Throwable) - 例外 のコンストラクタorg.jaxen.saxpath.SAXPathException
-
Create a new SAXPathException with the specified detail message
and root cause.
- selectNodes(Object) - クラス のメソッドorg.jaxen.BaseXPath
-
Select all nodes that are selected by this XPath
expression.
- selectNodes(Object) - インタフェース のメソッドorg.jaxen.XPath
-
Select all nodes that are selectable by this XPath
expression.
- selectNodesForContext(Context) - クラス のメソッドorg.jaxen.BaseXPath
-
Select all nodes that match this XPath
expression on the given Context object.
- selectSingleNode(Object) - クラス のメソッドorg.jaxen.BaseXPath
-
Select only the first node selected by this XPath
expression.
- selectSingleNode(Object) - インタフェース のメソッドorg.jaxen.XPath
-
Return the first node in document order that is selected by this
XPath expression.
- selectSingleNodeForContext(Context) - クラス のメソッドorg.jaxen.BaseXPath
-
Return only the first node that is selected by this XPath
expression.
- SELF - クラス のstatic変数org.jaxen.saxpath.Axis
-
The self
axis
- SelfAxisIterator - org.jaxen.utilのクラス
-
Represents the XPath self
axis.
- SelfAxisIterator(Object) - クラス のコンストラクタorg.jaxen.util.SelfAxisIterator
-
Create a new self
axis iterator.
- setAbsolute(boolean) - クラス のメソッドorg.jaxen.pattern.LocationPathPattern
-
- setAncestorPattern(Pattern) - クラス のメソッドorg.jaxen.pattern.LocationPathPattern
-
Adds a pattern for an ancestor of the current
context node used in this pattern.
- setContextSupport(ContextSupport) - クラス のメソッドorg.jaxen.Context
-
Set the ContextSupport
.
- setExpr(Expr) - インタフェース のメソッドorg.jaxen.expr.Predicate
-
Change the expression used by this predicate.
- setFilterExpr(Expr) - インタフェース のメソッドorg.jaxen.expr.PathExpr
-
Changes the expression's filter expression.
- setFunctionContext(FunctionContext) - クラス のメソッドorg.jaxen.BaseXPath
-
Set a FunctionContext
for use with this XPath
expression.
- setFunctionContext(FunctionContext) - クラス のメソッドorg.jaxen.ContextSupport
-
Set the FunctionContext
.
- setFunctionContext(FunctionContext) - インタフェース のメソッドorg.jaxen.XPath
-
Set a FunctionContext
for this XPath
expression.
- setJDOMElement(Element) - クラス のメソッドorg.jaxen.jdom.XPathNamespace
-
Sets or changes the element to which this namespace node is assigned.
- setLHS(Pattern) - クラス のメソッドorg.jaxen.pattern.UnionPattern
-
- setNamespaceContext(NamespaceContext) - クラス のメソッドorg.jaxen.BaseXPath
-
Set a NamespaceContext
for use with this
XPath expression.
- setNamespaceContext(NamespaceContext) - クラス のメソッドorg.jaxen.ContextSupport
-
Set the NamespaceContext
.
- setNamespaceContext(NamespaceContext) - インタフェース のメソッドorg.jaxen.XPath
-
Set a NamespaceContext
for this
XPath expression.
- setNodeSet(List) - クラス のメソッドorg.jaxen.Context
-
Set the context node-set, and sets the current context size to the size
of this node-set.
- setNodeTest(NodeTest) - クラス のメソッドorg.jaxen.pattern.LocationPathPattern
-
Allows the NodeTest to be set
- setNodeValue(String) - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Change the namespace URI (always fails).
- setParentPattern(Pattern) - クラス のメソッドorg.jaxen.pattern.LocationPathPattern
-
Adds a pattern for the parent of the current
context node used in this pattern.
- setPosition(int) - クラス のメソッドorg.jaxen.Context
-
Set the current position in the context node-set.
- setPrefix(String) - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Change the namespace prefix of this node (always fails).
- setRHS(Pattern) - クラス のメソッドorg.jaxen.pattern.UnionPattern
-
- setRootExpr(Expr) - クラス のメソッドorg.jaxen.expr.DefaultXPathExpr
-
非推奨です。
- setRootExpr(Expr) - インタフェース のメソッドorg.jaxen.expr.XPathExpr
-
Changes the wrapped expression object.
- setSAXReader(SAXReader) - クラス のメソッドorg.jaxen.dom4j.DocumentNavigator
-
- setSize(int) - クラス のメソッドorg.jaxen.Context
-
Set the current size in the context node-set.
- setTextContent(String) - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Change the value of this node (always fails).
- setUserData(String, Object, UserDataHandler) - クラス のメソッドorg.jaxen.dom.NamespaceNode
-
Associates an object with a key.
- setVariableContext(VariableContext) - クラス のメソッドorg.jaxen.BaseXPath
-
Set a VariableContext
for use with this XPath
expression.
- setVariableContext(VariableContext) - クラス のメソッドorg.jaxen.ContextSupport
-
Set the VariableContext
.
- setVariableContext(VariableContext) - インタフェース のメソッドorg.jaxen.XPath
-
Set a VariableContext
for this XPath
expression.
- setVariableValue(String, String, Object) - クラス のメソッドorg.jaxen.SimpleVariableContext
-
Set the value associated with a variable.
- setVariableValue(String, Object) - クラス のメソッドorg.jaxen.SimpleVariableContext
-
Set the value associated with a variable.
- setXPathFactory(XPathFactory) - クラス のメソッドorg.jaxen.JaxenHandler
-
Set the Jaxen XPathFactory
that constructs
the XPath expression tree during the parse.
- setXPathHandler(XPathHandler) - インタフェース のメソッドorg.jaxen.saxpath.SAXPathEventSource
-
Set the
XPathHandler
to receive
event callbacks during the parse.
- SimpleFunctionContext - org.jaxenのクラス
-
Simple default implementation of FunctionContext
.
- SimpleFunctionContext() - クラス のコンストラクタorg.jaxen.SimpleFunctionContext
-
Construct an empty function context.
- SimpleNamespaceContext - org.jaxenのクラス
-
Provides mappings from namespace prefix to namespace URI to the XPath
engine.
- SimpleNamespaceContext() - クラス のコンストラクタorg.jaxen.SimpleNamespaceContext
-
Creates a new empty namespace context.
- SimpleNamespaceContext(Map) - クラス のコンストラクタorg.jaxen.SimpleNamespaceContext
-
Creates a new namespace context pre-populated with the specified bindings.
- SimpleVariableContext - org.jaxenのクラス
-
Simple default implementation for VariableContext
.
- SimpleVariableContext() - クラス のコンストラクタorg.jaxen.SimpleVariableContext
-
Construct.
- simplified - クラス の変数org.jaxen.JaxenHandler
-
????
- simplify() - クラス のメソッドorg.jaxen.expr.DefaultExpr
-
非推奨です。
- simplify() - クラス のメソッドorg.jaxen.expr.DefaultFilterExpr
-
非推奨です。
- simplify() - クラス のメソッドorg.jaxen.expr.DefaultFunctionCallExpr
-
非推奨です。
- simplify() - クラス のメソッドorg.jaxen.expr.DefaultStep
-
非推奨です。
- simplify() - クラス のメソッドorg.jaxen.expr.DefaultXPathExpr
-
非推奨です。
- simplify() - インタフェース のメソッドorg.jaxen.expr.Expr
-
Simplifies the XPath expression.
- simplify() - インタフェース のメソッドorg.jaxen.expr.Predicate
-
Simplify the expression in this predicate.
- simplify() - クラス のメソッドorg.jaxen.expr.PredicateSet
-
Simplify each of the predicates in the list.
- simplify() - インタフェース のメソッドorg.jaxen.expr.Step
-
Simplifies the XPath step.
- simplify() - インタフェース のメソッドorg.jaxen.expr.XPathExpr
-
Simplifies the XPath expression.
- simplify() - クラス のメソッドorg.jaxen.pattern.LocationPathPattern
-
- simplify() - クラス のメソッドorg.jaxen.pattern.Pattern
-
- simplify() - クラス のメソッドorg.jaxen.pattern.UnionPattern
-
- SingleObjectIterator - org.jaxen.utilのクラス
-
Simple utility class that wraps an iterator around one object.
- SingleObjectIterator(Object) - クラス のコンストラクタorg.jaxen.util.SingleObjectIterator
-
Creates a new single object iterator.
- SINGLETON - クラス のstatic変数org.jaxen.pattern.TextNodeTest
-
- SingletonList - org.jaxen.utilのクラス
-
A utility class that implements singleton lists
(to avoid dependency on JDK 1.3).
- SingletonList(Object) - クラス のコンストラクタorg.jaxen.util.SingletonList
-
Creates a new singleton list.
- size() - クラス のメソッドorg.jaxen.util.SingletonList
-
Returns 1.
- stack - クラス の変数org.jaxen.JaxenHandler
-
This may be changed to an ArrayList in the future (i.e. version >= 1.2).
- StackedIterator - org.jaxen.utilのクラス
-
非推奨です。
this iterator is no longer used to implement any of the Jaxen axes. If you have implemented
a navigator-specific axis based on this class, take a look at the DescendantAxisIterator for ideas
on how to remove that dependency.
- StackedIterator(Object, Navigator) - クラス のコンストラクタorg.jaxen.util.StackedIterator
-
非推奨です。
- StackedIterator() - クラス のコンストラクタorg.jaxen.util.StackedIterator
-
非推奨です。
- stackSize() - クラス のメソッドorg.jaxen.JaxenHandler
-
- startAbsoluteLocationPath() - クラス のメソッドorg.jaxen.JaxenHandler
-
- startAbsoluteLocationPath() - クラス のメソッドorg.jaxen.pattern.PatternHandler
-
- startAbsoluteLocationPath() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the start of an absolute location path expression.
- startAdditiveExpr() - クラス のメソッドorg.jaxen.JaxenHandler
-
- startAdditiveExpr() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the start of an additive ('+' or '-') expression.
- startAllNodeStep(int) - クラス のメソッドorg.jaxen.JaxenHandler
-
- startAllNodeStep(int) - クラス のメソッドorg.jaxen.pattern.PatternHandler
-
- startAllNodeStep(int) - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the start of a node() step.
- startAndExpr() - クラス のメソッドorg.jaxen.JaxenHandler
-
- startAndExpr() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the start of an 'and' expression.
- startCommentNodeStep(int) - クラス のメソッドorg.jaxen.JaxenHandler
-
- startCommentNodeStep(int) - クラス のメソッドorg.jaxen.pattern.PatternHandler
-
- startCommentNodeStep(int) - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the start of a comment() step.
- startEqualityExpr() - クラス のメソッドorg.jaxen.JaxenHandler
-
- startEqualityExpr() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the start of an equality ('=' or '!
- startFilterExpr() - クラス のメソッドorg.jaxen.JaxenHandler
-
- startFilterExpr() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the start of a filter expression.
- startFunction(String, String) - クラス のメソッドorg.jaxen.JaxenHandler
-
- startFunction(String, String) - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of a function call.
- startMultiplicativeExpr() - クラス のメソッドorg.jaxen.JaxenHandler
-
- startMultiplicativeExpr() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the start of a multiplicative ('*', 'div' or 'mod') expression.
- startNameStep(int, String, String) - クラス のメソッドorg.jaxen.JaxenHandler
-
- startNameStep(int, String, String) - クラス のメソッドorg.jaxen.pattern.PatternHandler
-
- startNameStep(int, String, String) - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the start of a name step.
- startOrExpr() - クラス のメソッドorg.jaxen.JaxenHandler
-
- startOrExpr() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the start of an 'or' expression.
- startPathExpr() - クラス のメソッドorg.jaxen.JaxenHandler
-
- startPathExpr() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the start of a path expression.
- startPredicate() - クラス のメソッドorg.jaxen.JaxenHandler
-
- startPredicate() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the start of a predicate.
- startProcessingInstructionNodeStep(int, String) - クラス のメソッドorg.jaxen.JaxenHandler
-
- startProcessingInstructionNodeStep(int, String) - クラス のメソッドorg.jaxen.pattern.PatternHandler
-
- startProcessingInstructionNodeStep(int, String) - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the start of a processing-instruction(...) step.
- startRelationalExpr() - クラス のメソッドorg.jaxen.JaxenHandler
-
- startRelationalExpr() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the start of a relational ('<', '>', '<=', or '>=') expression.
- startRelativeLocationPath() - クラス のメソッドorg.jaxen.JaxenHandler
-
- startRelativeLocationPath() - クラス のメソッドorg.jaxen.pattern.PatternHandler
-
- startRelativeLocationPath() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the start of a relative location path expression.
- StartsWithFunction - org.jaxen.functionのクラス
-
4.2 boolean starts-with(string,string)
The starts-with function returns true if the first argument string starts
with the second argument string, and otherwise returns false.
- StartsWithFunction() - クラス のコンストラクタorg.jaxen.function.StartsWithFunction
-
Create a new StartsWithFunction
object.
- startTextNodeStep(int) - クラス のメソッドorg.jaxen.JaxenHandler
-
- startTextNodeStep(int) - クラス のメソッドorg.jaxen.pattern.PatternHandler
-
- startTextNodeStep(int) - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the start of a text() step.
- startUnaryExpr() - クラス のメソッドorg.jaxen.JaxenHandler
-
- startUnaryExpr() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the start of a unary ('+' or '-') expression.
- startUnionExpr() - クラス のメソッドorg.jaxen.JaxenHandler
-
- startUnionExpr() - クラス のメソッドorg.jaxen.pattern.PatternHandler
-
- startUnionExpr() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the start of a union ('|') expression.
- startXPath() - クラス のメソッドorg.jaxen.JaxenHandler
-
- startXPath() - インタフェース のメソッドorg.jaxen.saxpath.XPathHandler
-
Receive notification of the start of an XPath expression parse.
- Step - org.jaxen.exprのインタフェース
-
Represents a location step in a LocationPath.
- StringFunction - org.jaxen.functionのクラス
-
4.2 string string(object)
The string function converts
an object to a string as follows:
A node-set is converted to a string by returning the string-value of the node in the node-set
that is first in document order.
- StringFunction() - クラス のコンストラクタorg.jaxen.function.StringFunction
-
Create a new StringFunction
object.
- StringLengthFunction - org.jaxen.functionのクラス
-
4.2 number string-length(string)
The string-length function returns the number of Unicode characters
in its argument.
- StringLengthFunction() - クラス のコンストラクタorg.jaxen.function.StringLengthFunction
-
Create a new StringLengthFunction
object.
- stringValueOf(Object) - クラス のメソッドorg.jaxen.BaseXPath
-
Retrieves the string-value of the result of
evaluating this XPath expression when evaluated
against the specified context.
- stringValueOf(Object) - インタフェース のメソッドorg.jaxen.XPath
-
Retrieve a string-value interpretation of this XPath
expression when evaluated against the given context.
- SubstringAfterFunction - org.jaxen.functionのクラス
-
4.2 string substring-after(string,string)
The substring-after function returns the substring of the first argument string
that follows the first occurrence of the second argument string in the first
argument string, or the empty string if the first argument string does not contain the second argument string.
- SubstringAfterFunction() - クラス のコンストラクタorg.jaxen.function.SubstringAfterFunction
-
Create a new SubstringAfterFunction
object.
- SubstringBeforeFunction - org.jaxen.functionのクラス
-
4.2 string substring-before(string,string)
The substring-before function returns the substring of the first argument
string that precedes the first occurrence of the second argument string
in the first argument string, or the empty string if the
first argument string does not contain the second argument string.
- SubstringBeforeFunction() - クラス のコンストラクタorg.jaxen.function.SubstringBeforeFunction
-
Create a new SubstringBeforeFunction
object.
- SubstringFunction - org.jaxen.functionのクラス
-
4.2
string substring(string,number,number?
- SubstringFunction() - クラス のコンストラクタorg.jaxen.function.SubstringFunction
-
Create a new SubstringFunction
object.
- SUBTRACT - インタフェース のstatic変数org.jaxen.saxpath.Operator
-
The subtraction operator -
- SumFunction - org.jaxen.functionのクラス
-
4.4 number sum(node-set)
The sum function returns the sum, for each node in the argument node-set,
of the result of converting the string-values of the node to a number.
- SumFunction() - クラス のコンストラクタorg.jaxen.function.SumFunction
-
Create a new SumFunction
object.
- supportsNamedAccess(ContextSupport) - クラス のメソッドorg.jaxen.expr.iter.IterableAttributeAxis
-
Does this axis support named access?
- supportsNamedAccess(ContextSupport) - クラス のメソッドorg.jaxen.expr.iter.IterableAxis
-
Does this axis support named access?
- supportsNamedAccess(ContextSupport) - クラス のメソッドorg.jaxen.expr.iter.IterableChildAxis
-
Does this axis support named access?