oracle.toplink.essentials.internal.parsing

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 » Database ORM » toplink » oracle.toplink.essentials.internal.parsing 
oracle.toplink.essentials.internal.parsing
Java Source File NameTypeComment
AbsNode.javaClass
AggregateNode.javaClass
AllNode.javaClass INTERNAL

Purpose: Represent an ALL subquery.

AndNode.javaClass
AnyNode.javaClass INTERNAL

Purpose: Represent an ANY subquery.

ArithmeticFunctionNode.javaClass
AttributeNode.javaClass INTERNAL

Purpose: Represent a attribute.

AvgNode.javaClass
BetweenNode.javaClass
BinaryOperatorNode.javaClass
BooleanLiteralNode.javaClass
CollectionMemberDeclNode.javaClass INTERNAL

Purpose: Represent collection member identification variable declaration as part of the FROM clause: IN(c.orders) o.

ConcatNode.javaClass
ConstructorNode.javaClass
CountNode.javaClass
DateFunctionNode.javaClass INTERNAL

Purpose: Represent a date function: CURRENT_DATE, CURRENT_TIME, CURRENT_TIMESTAMP.

DeleteNode.javaClass
DivideNode.javaClass
DotNode.javaClass INTERNAL

Purpose: This node represents an 'DOT' (i.e.

DoubleLiteralNode.javaClass
EJBQLParseTree.javaClass
EmptyCollectionComparisonNode.javaClass
EqualsAssignmentNode.javaClass
EqualsNode.javaClass
EscapeNode.javaClass
ExistsNode.javaClass INTERNAL

Purpose: Represent an EXISTS subquery.

FetchJoinNode.javaClass INTERNAL

Purpose: Represent a FETCH JOIN declaration as part of the FROM clause: FETCH JOIN o.customer.

Responsibilities:

  • Manage the path node and the outer join flag of the FETCH JOIN clause.
FloatLiteralNode.javaClass
FromNode.javaClass INTERNAL

Purpose: Represent a FROM

Responsibilities:

  • Determines the context for the Parse Tree
  • Determine the reference class for a query
  • Handle any FROM ...
FunctionalExpressionNode.javaClass
GenerationContext.javaClass
GreaterThanEqualToNode.javaClass
GreaterThanNode.javaClass
GroupByNode.javaClass
HavingNode.javaClass
IdentificationVariableDeclNode.javaClass INTERNAL

Purpose: This is the superclass for all identification declaration nodes.

InNode.javaClass
IntegerLiteralNode.javaClass
JoinDeclNode.javaClass INTERNAL

Purpose: Represent JOIN identification variable declaration as part of the FROM clause: JOIN c.orders o.

Responsibilities:

  • Manage the path node and the outer join flag of the JOIN clause.
LengthNode.javaClass
LessThanEqualToNode.javaClass
LessThanNode.javaClass
LikeNode.javaClass
LiteralNode.javaClass
LocateNode.javaClass
LogicalOperatorNode.javaClass
LongLiteralNode.javaClass
LowerNode.javaClass
MajorNode.javaClass
MaxNode.javaClass
MemberOfNode.javaClass
MinNode.javaClass
MinusNode.javaClass
ModifyNode.javaClass
ModNode.javaClass
MultiplyNode.javaClass
Node.javaClass INTERNAL

Purpose: This is the superclass for all Nodes.

NodeFactory.javaInterface INTERNAL

Purpose: This interface specifies methods to create parse trees and parse tree nodes.

NodeFactoryImpl.javaClass INTERNAL

Purpose: Implements a node factory used by the EJBQLParser class.

NotEqualsNode.javaClass
NotNode.javaClass
NullComparisonNode.javaClass
OrderByItemNode.javaClass
OrderByNode.javaClass
OrNode.javaClass
ParameterNode.javaClass
ParseTree.javaClass INTERNAL

Purpose: A ParseTree contains Node(s).

ParseTreeContext.javaClass INTERNAL

Purpose: The ParseTreeContext holds and manages context information for the parse tree for validation.

PlusNode.javaClass
QueryNode.javaClass INTERNAL: This node contains the information about what kind of query is represented it's tree (e.g.
RangeDeclNode.javaClass INTERNAL

Purpose: Represent a range identification variable declaration as part of the FROM clause FROM Order o.

Responsibilities:

  • Manage the abstract schema name range variable declaration.
SelectGenerationContext.javaClass INTERNAL: An extension of GenerationContext the provides SELECT specfic behavior.
SelectNode.javaClass INTERNAL

Purpose: Represent a SELECT

Responsibilities:

  • Hold the distinct status
  • Modify a query based on the contents The SELECT statement determines the return type of an EJBQL query. The SELECT may also determine the distinct state of a query A SELECT can be one of the following: 1.
SetNode.javaClass INTERNAL: This node holds a list of all the updates that will occur in an Update Query.
SimpleConditionalExpressionNode.javaClass
SizeNode.javaClass
SomeNode.javaClass INTERNAL

Purpose: Represent a SOME subquery.

SortDirectionNode.javaClass
SqrtNode.javaClass
StringFunctionNode.javaClass
StringLiteralNode.javaClass
SubqueryNode.javaClass INTERNAL

Purpose: Represent a subquery.

SubstringNode.javaClass
SumNode.javaClass
TrimNode.javaClass
TypeHelper.javaInterface INTERNAL

Purpose: Specify type helper methods.

TypeHelperImpl.javaClass INTERNAL

Purpose: Implement type helper methods specified by TypeHelper.

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