org.apache.openjpa.jdbc.kernel.exps
Home
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
26.
ERP CRM Financial
27.
ESB
28.
Forum
29.
Game
30.
GIS
31.
Graphic 3D
32.
Graphic Library
33.
Groupware
34.
HTML Parser
35.
IDE
36.
IDE Eclipse
37.
IDE Netbeans
38.
Installer
39.
Internationalization Localization
40.
Inversion of Control
41.
Issue Tracking
42.
J2EE
43.
J2ME
44.
JBoss
45.
JMS
46.
JMX
47.
Library
48.
Mail Clients
49.
Music
50.
Natural Language Processing
51.
Net
52.
Parser
53.
PDF
54.
Portal
55.
Profiler
56.
Project Management
57.
Report
58.
RSS RDF
59.
Rule Engine
60.
Science
61.
Scripting
62.
Search Engine
63.
Security
64.
Sevlet Container
65.
Source Control
66.
Swing Library
67.
Template Engine
68.
Test Coverage
69.
Testing
70.
UML
71.
Web Crawler
72.
Web Framework
73.
Web Mail
74.
Web Server
75.
Web Services
76.
Web Services apache cxf 2.2.6
77.
Web Services AXIS2
78.
Wiki Engine
79.
Workflow Engines
80.
XML
81.
XML UI
Java Source Code / Java Documentation
»
Database ORM
»
openjpa
»
org.apache.openjpa.jdbc.kernel.exps
org.apache.openjpa.jdbc.kernel.exps
OpenJPA-JDBC Expression Tree
Java Source File Name
Type
Comment
Abs.java
Class
Absolute value.
AbstractVal.java
Class
Abstract value for easy extension.
Aggregate.java
Class
Aggregate listener that evaluates to a value.
All.java
Class
All.
AndExpression.java
Class
Combines two expressions.
Any.java
Class
Any.
Args.java
Class
A list of arguments to a multi-argument function.
Avg.java
Class
Average.
BinaryOpExpState.java
Class
Expression tree state for a binary operator.
BindVariableAndExpression.java
Class
Combines a bind variable expression with another.
BindVariableExpression.java
Class
Binds a variable to a value.
CoalesceExpression.java
Class
Coalesce expression.
CollectionParam.java
Class
A collection-valued input parameter in an in-expression.
CompareEqualExpression.java
Class
Compares two values for equality.
CompareExpression.java
Class
Compares two values.
Concat.java
Class
Concatenate one string with another.
Const.java
Class
A literal or parameter in the filter.
ConstGetObjectId.java
Class
Obtaining the object id of a constant.
ConstInstanceofExpression.java
Class
Tests whether a value is an instance of a class.
ConstPath.java
Class
A field traversal starting with a constant filter parameter.
ContainsExpression.java
Class
Tests whether one value contains another.
ContainsKeyExpression.java
Class
Tests whether a map value contains a key.
Count.java
Class
Count non-null values.
CurrentDate.java
Class
A literal current DATE/TIME/TIMESTAMP value in a filter.
DatastoreFunction.java
Class
A unary operator that executes a datastore specific function with zero or more arguments.
Distinct.java
Class
Distinct the specified path.
EmptyExpression.java
Class
An empty expression.
EndsWithExpression.java
Class
Test if one string ends with another.
EqualExpression.java
Class
Compares two values.
Exp.java
Interface
An Expression represents a query ready for execution.
ExpContext.java
Class
Expression tree context.
ExpState.java
Class
Expression tree state.
Extension.java
Class
Filter listener that evaluates to a value.
FilterValue.java
Interface
The simplified public view of any non-operator in a query filter, including constants, variables, and object fields.
FilterValueImpl.java
Class
Implementation of
FilterValue
that wraps a
Val
.
GeneralCaseExpression.java
Class
General case expression.
GetColumn.java
Class
Returns the SQL alias of the named column for use in a query.
GetMapValue.java
Class
Returns the value of the given map's key.
GetObjectId.java
Class
Select the oid value of an object; typically used in projections.
HasContainsExpressionVisitor.java
Class
Determines whether the visited expressions include a "contains" expression.
Index.java
Class
Index.
IndexOf.java
Class
Find the index of one string within another.
InExpression.java
Class
Tests whether a value is IN a collection.
InKeyExpression.java
Class
Tests whether a value is IN a map key set.
InstanceofExpression.java
Class
Tests whether the given path is an instance of the given class.
InSubQExpression.java
Class
Tests whether a value is IN a subquery.
InValueExpression.java
Class
Tests whether a value is IN a map value collection.
IsEmptyExpression.java
Class
Tests whether the given value is empty.
IsNotEmptyExpression.java
Class
Tests whether the given value is not empty.
JDBCAggregateListener.java
Interface
JDBC extension to the
AggregateListener
.
JDBCExpressionFactory.java
Class
Expression factory implementation that can be used to execute queries via SQL.
JDBCFilterListener.java
Interface
JDBC extension to the
FilterListener
.
JDBCPath.java
Interface
A path represents a traversal into fields of a candidate object.
JDBCStringContains.java
Class
Tests if the target contains the given argument.
JDBCWildcardMatch.java
Class
Tests if the target matches the wildcard expression given in the argument.
Lit.java
Class
A literal value in a filter.
MapEntry.java
Class
Returns the Map.Entry
of a map value.
MapKey.java
Class
Returns the key of a map value.
MatchesExpression.java
Class
Test if a string matches a regexp.
Math.java
Class
Value produced by a mathematical operation on two values.
Max.java
Class
Maximum.
Min.java
Class
Minimum.
NotContainsExpression.java
Class
Negates a contains expression using a subselect to make sure no elements meet the criteria.
NotEqualExpression.java
Class
Compares two values.
NotExpression.java
Class
Negates an expression.
Null.java
Class
A literal null value in a filter.
NullIfExpression.java
Class
NullIf expression.
OrExpression.java
Class
Combines two expressions.
Param.java
Class
A parameter in a filter.
PCPath.java
Class
A path represents a traversal into fields of a candidate object.
QueryExpressionsState.java
Class
Struct to hold the state of a query expressions instance.
SelectConstructor.java
Class
Turns parsed queries into selects.
SimpleCaseExpression.java
Class
Simple case expression.
Size.java
Class
Size.
SQLEmbed.java
Class
Simple listener which embeds its SQL argument into the query.
SQLExpression.java
Class
Simple listener which embeds the argument as an expression into the where clause generated by the query.
SQLValue.java
Class
Simple listener which embeds the argument as a value into the where clause generated by the query.
Sqrt.java
Class
Square root.
StartsWithExpression.java
Class
Test if one string starts with another.
StringFunction.java
Class
A JDBC string function.
StringLength.java
Class
Returns the number of characters in a string.
SubQ.java
Class
A subquery.
Substring.java
Class
Take a substring of a string.
Sum.java
Class
Sum.
ToLowerCase.java
Class
Lower-cases a string.
ToUpperCase.java
Class
Upper-cases a string.
Trim.java
Class
Returns the number of characters in a string.
Type.java
Class
Entity Type expression.
TypeLit.java
Class
A type literal value.
UnaryOp.java
Class
Value produced by a unary operation on a value.
Val.java
Interface
A Value represents any non-operator in a query filter, including constants, variables, and object fields.
Variable.java
Class
A variable in a filter.
WhenCondition.java
Class
Value produced by a when_clause of a case expression.
WhenScalar.java
Class
Value produced by a when_clause of a case expression.
w_w___w__.___j__a_va_2s___.___c___om__
|
Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.