javax.jcr.query.qom

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 » 6.0 JDK Modules » jsr 283 » javax.jcr.query.qom 
javax.jcr.query.qom
Java Source File NameTypeComment
And.javaInterface Performs a logical conjunction of two other constraints.
BindVariableValue.javaInterface Evaluates to the value of a bind variable.
ChildNode.javaInterface Tests whether the ChildNode.getSelectorName selector node is a child of a node reachable by absolute path ChildNode.getPath path .

A node-tuple satisfies the constraint only if:

  selectorNode.getParent().isSame(session.getNode(path))
would return true, where selectorNode is the node for the specified selector.

The query is invalid if:

ChildNodeJoin.javaInterface Tests whether the ChildNodeJoin.getChildSelectorName childSelector node is a child of the ChildNodeJoin.getParentSelectorName parentSelector node.
ChildNodeJoinCondition.javaInterface Tests whether the ChildNodeJoinCondition.getChildSelectorName childSelector node is a child of the ChildNodeJoinCondition.getParentSelectorName parentSelector node.
Column.javaInterface Defines a column to include in the tabular view of query results.

If Column.getPropertyName property is not specified, a column is included for each single-valued non-residual property of the node type specified by the nodeType attribute of Column.getSelectorName selector .

If Column.getPropertyName property is specified, Column.getColumnName columnName is required and used to name the column in the tabular results.

Comparison.javaInterface Filters node-tuples based on the outcome of a binary operation.

For any comparison, Comparison.getOperand2 operand2 always evaluates to a scalar value.

Constraint.javaInterface Filters the set of node-tuples formed by evaluating the query's selectors and the joins between them.
DescendantNode.javaInterface Tests whether the DescendantNode.getSelectorName selector node is a descendant of a node reachable by absolute path DescendantNode.getPath path .

A node-tuple satisfies the constraint only if:

  selectorNode.getAncestor(n).isSame(session.getNode(path)) &&
 selectorNode.getDepth() > n
would return true for some non-negative integer n, where DescendantNode.getSelectorName selectorNode is the node for the specified selector.

The query is invalid if:

DescendantNodeJoin.javaInterface Tests whether the DescendantNodeJoin.getDescendantSelectorName descendantSelector node is a descendant of the DescendantNodeJoin.getAncestorSelectorName ancestorSelector node.
DescendantNodeJoinCondition.javaInterface Tests whether the DescendantNodeJoinCondition.getDescendantSelectorName descendantSelector node is a descendant of the DescendantNodeJoinCondition.getAncestorSelectorName ancestorSelector node.
DynamicOperand.javaInterface An operand whose value can only be determined in evaluating the query.
EquiJoinCondition.javaInterface Tests whether the value of a property in a first selector is equal to the value of a property in a second selector.
FullTextSearch.javaInterface Performs a full-text search.

The full-text search expression is evaluated against the set of full-text indexed properties within the full-text search scope.

FullTextSearchScore.javaInterface Evaluates to a DOUBLE value equal to the full-text search score of a node.
Join.javaInterface Performs a join between two node-tuple sources.
JoinCondition.javaInterface Filters the set of node-tuples fromed from a Join join .
Length.javaInterface Evaluates to the length (or lengths, if multi-valued) of a property.
Literal.javaInterface A literal value.
LowerCase.javaInterface Evaluates to the lower-case string value (or values, if multi-valued) of LowerCase.getOperand operand .

If LowerCase.getOperand operand does not evaluate to a string value, its value is first converted to a string.

NodeLocalName.javaInterface Evaluates to a NAME value equal to the local (unprefixed) name of a node.
NodeName.javaInterface Evaluates to a NAME value equal to the namespace-qualified name of a node.
Not.javaInterface Performs a logical negation of another constraint.
Operand.javaInterface An operand to a binary operation specified by a Comparison .
Or.javaInterface Performs a logical disjunction of two other constraints.
Ordering.javaInterface Determines the relative order of two node-tuples by evaluating Ordering.getOperand operand for each.
PropertyExistence.javaInterface Tests the existence of a property.
PropertyValue.javaInterface Evaluates to the value (or values, if multi-valued) of a property.
QueryObjectModel.javaInterface A query in the JCR query object model.

The JCR query object model describes the queries that can be evaluated by a JCR repository independent of any particular query language, such as SQL.

A query consists of:

  • a source.
QueryObjectModelConstants.javaInterface Defines constants used in the query object model.
QueryObjectModelFactory.javaInterface A QueryObjectModelFactory creates instances of the JCR query object model.
SameNode.javaInterface Tests whether the SameNode.getSelectorName selector node is reachable by absolute path SameNode.getPath path .

A node-tuple satisfies the constraint only if:

  selectorNode.isSame(session.getNode(path))
would return true, where selectorNode is the node for the specified selector.

The query is invalid if:

SameNodeJoinCondition.javaInterface Tests whether two nodes are "the same" according to the isSame method of javax.jcr.Item.

If SameNodeJoinCondition.getSelector2Path selector2Path is omitted:

Selector.javaInterface Selects a subset of the nodes in the repository based on node type.
Source.javaInterface Evaluates to a set of node-tuples.
StaticOperand.javaInterface An operand whose value can be determined from static analysis of the query, prior to its evaluation.
UpperCase.javaInterface Evaluates to the upper-case string value (or values, if multi-valued) of UpperCase.getOperand operand .

If UpperCase.getOperand operand does not evaluate to a string value, its value is first converted to a string.

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.