net.sf.saxon.expr

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » XML » XPath Saxon » net.sf.saxon.expr 
net.sf.saxon.expr
Java Source File NameTypeComment
AppendIterator.javaClass
ArithmeticExpression.javaClass Arithmetic Expression: an expression using one of the operators plus, minus, multiply, div, idiv, mod.
Assignation.javaClass Assignation is an abstract superclass for the kinds of expression that declare range variables: for, some, and every.
AtomicSequenceConverter.javaClass
Atomizer.javaClass
AxisExpression.javaClass An AxisExpression is always obtained by simplifying a PathExpression. It represents a PathExpression that starts at the context node, and uses a simple node-test with no filters.
BinaryExpression.javaClass
Binding.javaInterface Binding is a interface used to represent the run-time properties and methods associated with a variable: specifically, a method to get the value of the variable.
BindingReference.javaInterface BindingReference is a interface used to mark references to a variable declaration.
BooleanExpression.javaClass Boolean expression: two truth values combined using AND or OR.
CardinalityChecker.javaClass
CastableExpression.javaClass Castable Expression: implements "Expr castable as atomic-type?".
CastAsQName.javaClass This class supports casting a string to a QName or a notation.
CastExpression.javaClass Cast Expression: implements "cast as data-type ( expression )".
ComputedExpression.javaClass

This class is an abstract superclass for different kinds of expression.

Container.javaInterface A Container is something that can act as the parent of an expression.
ContextItemExpression.javaClass This class represents the expression "(dot)", which always returns the context item.
DifferenceEnumeration.javaClass An enumeration representing a nodeset that is teh difference of two other NodeSets.
EagerLetExpression.javaClass An EagerLetExpression is the same as a LetExpression except that the variable is evaluated using eager evaluation rather than lazy evaluation.
EarlyEvaluationContext.javaClass This class is an implementation of XPathContext used when evaluating constant sub-expressions at compile time.
ErrorExpression.javaClass Error expression: this expression is generated when the supplied expression cannot be parsed, and the containing element enables forwards-compatible processing.
Expression.javaInterface Interface supported by an XPath expression.
ExpressionLocation.javaClass Class to hold details of the location of an expression, of an error in a source file, etc.
ExpressionParser.javaClass Parser for XPath expressions and XSLT patterns.
ExpressionTool.javaClass This class, ExpressionTool, contains a number of useful static methods for manipulating expressions.
FilterExpression.javaClass
FilterIterator.javaClass A FilterIterator filters an input sequence using a filter expression.
FirstItemExpression.javaClass
ForExpression.javaClass A ForExpression maps an expression over a sequence.
FunctionCall.javaClass
GeneralComparison.javaClass GeneralComparison: a boolean expression that compares two expressions for equals, not-equals, greater-than or less-than.
GeneralComparison10.javaClass GeneralComparison10: a boolean expression that compares two expressions for equals, not-equals, greater-than or less-than.
IdentityComparison.javaClass
IfExpression.javaClass
InstanceOfExpression.javaClass
IntegerRangeTest.javaClass An IntegerRangeTest is an expression of the form E = N to M where E, N, and M are all expressions of type integer.
IntersectionEnumeration.javaClass An enumeration representing a nodeset that is an intersection of two other NodeSets.
IsLastExpression.javaClass A position() eq last() expression, generated by the optimizer.
ItemChecker.javaClass
LastPositionFinder.javaInterface A LastPositionFinder is an interface implemented by any SequenceIterator that is able to return the position of the last item in the sequence.
LazyExpression.javaClass A LazyExpression is an expression that forces lazy evaluation: it must not be evaluated eagerly, because a failure must not be reported unless the value is actually referenced.
LetExpression.javaClass A LetExpression is modelled on the XQuery syntax let $x := expr return expr.
MappingFunction.javaInterface MappingFunction is an interface that must be satisfied by an object passed to a MappingIterator.
MappingIterator.javaClass MappingIterator merges a sequence of sequences into a single flat sequence.
MonoIterator.javaClass
MultiIterator.javaClass
NumericPromoter.javaClass
Optimizer.javaClass This class doesn't actually do any optimization itself, despite the name.
PairIterator.javaClass
ParentNodeExpression.javaClass
PathExpression.javaClass An expression that establishes a set of nodes by following relationships between nodes in the document.
PositionIterator.javaClass
PositionRange.javaClass PositionRange: a boolean expression that tests whether the position() is within a certain range.
PromotionOffer.javaClass PromotionOffer is an object used transiently during compilation of an expression.
QuantifiedExpression.javaClass A QuantifiedExpression tests whether some/all items in a sequence satisfy some condition.
RangeExpression.javaClass A RangeExpression is an expression that represents an integer sequence as a pair of end-points (for example "x to y"). If the end-points are equal, the sequence is of length one.

From Saxon 7.8, the sequence must be ascending; if the end-point is less than the start-point, an empty sequence is returned.

RangeVariableDeclaration.javaClass Represents the defining occurrence of a variable declared for local use within an expression, for example the $x in "for $x in ...".
ReversibleIterator.javaInterface A ReversibleIterator is an interface implemented by any SequenceIterator that is able to deliver items in reverse order (or to supply another iterator that can do so).
RoleLocator.javaClass A RoleLocator identifies the role in which an expression is used, for example as the third argument of the concat() function.
RootExpression.javaClass An expression whose value is always a set of nodes containing a single node, the document root.
SimpleExpression.javaClass An abstract implementation of Expression designed to make it easy to implement new expressions, in particular, expressions to support extension instructions.
SimpleMappingExpression.javaClass A simple mapping expression is an expression A/B where B has a static type that is an atomic type.
SingleNodeExpression.javaClass
SingletonAtomizer.javaClass A SingletonAtomizer combines the functions of an Atomizer and a CardinalityChecker: it is used to atomize a sequence of nodes, checking that the result of the atomization contains zero or one atomic values.
SingletonComparison.javaClass Class to handle comparisons of singletons.
StackFrame.javaClass This class represents a stack frame holding details of the variables used in a function or in an XSLT template.
StaticContext.javaInterface A StaticContext contains the information needed while an expression or pattern is being parsed.
StaticProperty.javaClass This class contains constants identifying dependencies that an XPath expression might have on its context.
StringTokenIterator.javaClass StringTokenIterator: breaks a string up into tokens, and returns the tokens as a sequence of strings.
SuppliedParameterReference.javaClass Supplied parameter reference: this is an internal expression used to refer to the value of the n'th parameter supplied on a template call (apply-templates). It is used within a type-checking expression designed to check the consistency of the supplied value with the required type.
TailExpression.javaClass
Token.javaClass This class holds static constants and methods defining the lexical tokens used in XPath and XQuery, and associated keywords.
Tokenizer.javaClass Tokenizer for expressions and inputs.
TreatExpression.javaClass Treat Expression: implements "treat as data-type ( expression )".
TypeChecker.javaClass This class provides Saxon's type checking capability.
UnaryExpression.javaClass
UnionEnumeration.javaClass An enumeration representing a nodeset that is a union of two other NodeSets.
UntypedAtomicConverter.javaClass
UserFunctionCall.javaClass This class represents a call to a function defined in the stylesheet or query.
ValueComparison.javaClass ValueComparison: a boolean expression that compares two atomic values for equals, not-equals, greater-than or less-than.
VariableDeclaration.javaInterface Generic interface representing a variable declaration in the static context of an XPath expression. The declaration may be internal or external to the XPath expression itself.
VariableReference.javaClass Variable reference: a reference to a variable.
VennExpression.javaClass
XPathContext.javaInterface This class represents a context in which an XPath expression is evaluated.
XPathContextMajor.javaClass This class represents a "major context" in which an XPath expression is evaluated: a "major context" object allows all aspects of the dynamic context to change, whereas a "minor context" only allows changes to the focus and the destination for push output.
XPathContextMinor.javaClass This class represents a minor change in the dynamic context in which an XPath expression is evaluated: a "major context" object allows all aspects of the dynamic context to change, whereas a "minor context" only allows changes to the focus and the destination for push output.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.