org.apache.openjpa.kernel.exps
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
»
openjpa
»
org.apache.openjpa.kernel.exps
org.apache.openjpa.kernel.exps
OpenJPA Expression Tree
Java Source File Name
Type
Comment
Abs.java
Class
Take the absolute value of a number.
AbstractExpressionBuilder.java
Class
Abstract base class to help build expressions.
AbstractExpressionVisitor.java
Class
No-op abstract visitor meant for easy extension.
Add.java
Class
Value produced by two values being added together.
Aggregate.java
Class
A value produced from evaluating a result aggregate.
AggregateListener.java
Interface
An aggregate listener aggregates data produced by an ExpressionQuery.
AggregateVal.java
Class
An aggregate of some value.
All.java
Class
In-memory All implementation.
AndExpression.java
Class
An expression that AND's two others together.
Any.java
Class
In-memory Any implementation.
Args.java
Class
A list of arguments to a multi-argument function.
Arguments.java
Interface
Multiple arguments to a function call.
Avg.java
Class
Average values.
BindKeyVariableExpression.java
Class
BindVariableExpression
for map key sets.
BindValueVariableExpression.java
Class
BindVariableExpression
for map value collections.
BindVariableAndExpression.java
Class
Any contains(var) expression must be followed by at least one AND clause using the variable 'var'.
BindVariableExpression.java
Class
Binds a variable to a collection.
BoundVariable.java
Class
Represents a bound variable.
CandidatePath.java
Class
A path represents a traversal into fields of a candidate object.
Cast.java
Class
Represents a cast.
CompareExpression.java
Class
Expression that compares two others.
Concat.java
Class
Concatenate two strings together.
Constant.java
Interface
Interface for any query constant value.
ContainsExpression.java
Class
Tests that a Collection contains a value.
ContainsKeyExpression.java
Class
Tests that a Map key set contains a value.
ContainsValueExpression.java
Class
Tests that a Map value collection contains a value.
Count.java
Class
Count non-null values.
CurrentDate.java
Class
Represents the current date.
Distinct.java
Class
A distinct set of the specified values.
Divide.java
Class
Value produced by one value being divided by another.
EndsWithExpression.java
Class
Expression that compares two others.
EqualExpression.java
Class
Expression that compares two others.
Exp.java
Class
An in-memory representation of an
Expression
.
Expression.java
Interface
Interface for a set of conditions that must be met for the query to be true.
ExpressionFactory.java
Interface
The ExpressionFactory must be implemented by a particular runtime to form
Expression
s in its native query language.
ExpressionParser.java
Interface
Parser for query languages that will be used by a ExpressionQuery . A QueryParser is responsible for translating from some string-based query language into
Expression
s.
ExpressionVisitor.java
Interface
Visits nodes of a query expression tree.
Extension.java
Class
A value produced from evaluating a custom extension.
FilterListener.java
Interface
A filter listener extends expression filters with custom functionality.
GetMapValue.java
Class
Returns the value of the specified key in a Map.
GetObjectId.java
Class
Get the oid of an object.
GreaterThanEqualExpression.java
Class
Expression that compares two others.
GreaterThanExpression.java
Class
Expression that compares two others.
IndexOf.java
Class
Find the index of one string within another.
InMemoryExpressionFactory.java
Class
Expression factory implementation that can be used to execute queries in memory.
InstanceofExpression.java
Class
Tests whether a value is an instance of a class.
IsEmptyExpression.java
Class
Expression to test for an empty Collection.
LessThanEqualExpression.java
Class
Expression that compares two others.
LessThanExpression.java
Class
Expression that compares two others.
Lit.java
Class
Represents a literal.
Literal.java
Interface
Interface for any literal value.
MatchesExpression.java
Class
Expression that compares two others.
MathVal.java
Class
Value produced by a mathematical operation on two values.
Max.java
Class
Find the max.
Min.java
Class
Find the min.
Mod.java
Class
Value produced by one value being mod'd by another.
Multiply.java
Class
Value produced by two values being multiplied together.
NotEqualExpression.java
Class
Expression that compares two others.
NotExpression.java
Class
An expression that NOT's another.
Null.java
Class
Represents the null constant.
OrExpression.java
Class
An expression that OR's two others together.
Param.java
Class
Represents a parameter.
Parameter.java
Interface
A query parameter.
Path.java
Interface
A path represents a traversal into fields of a candidate object.
QueryExpressions.java
Class
Struct to hold the state of a parsed expression query.
Resolver.java
Interface
A Resolver is used to resolve listeners and class or entity names that appear in a query.
Size.java
Class
Returns the count of a collection.
Sqrt.java
Class
Take the square root of a number.
StartsWithExpression.java
Class
Expression that compares two others.
StringContains.java
Class
Tests if the target contains the given argument.
StringLength.java
Class
Returns the number of characters in the String.
SubQ.java
Class
An in-memory representation of a
Subquery
.
Subquery.java
Interface
Query value representing a subquery.
Substring.java
Class
Take the substring of a string.
Subtract.java
Class
Value produced by one value being subtracted from another.
Sum.java
Class
Sum values.
This.java
Class
Represents the 'this' ptr in a filter.
ToLowerCase.java
Class
Lower-case a string.
ToUpperCase.java
Class
Upper-case a string.
Trim.java
Class
Trims leading, trailing, or both charactes from a String.
UnaryMathVal.java
Class
Value produced by a mathematical operation on one value.
UnboundVariable.java
Class
Represents an unbound variable.
Val.java
Class
An in-memory representation of a
Value
.
ValExpression.java
Class
Boolean value used as an expression.
Value.java
Interface
Interface for any non-operator in a query filter, including constants, variables, and object fields.
ValuePath.java
Class
Represents a path that begins with a variable or parameter.
WildcardMatch.java
Class
Tests if the target matches the wildcard expression given in the argument.
www.java2java.com
|
Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.