org.apache.openjpa.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.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.
Coalesce.java
Class
CollectionParam.java
Class
Represents a collection valued input parameter.
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.
Context.java
Class
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.
GeneralCase.java
Class
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.
Index.java
Class
Returns the index of a value within a collection/map.
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.
NullIf.java
Class
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.
SimpleCase.java
Class
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.
Type.java
Class
Returns the entity type.
TypeLit.java
Class
Represents a type literal.
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.
WhenCondition.java
Class
WhenScalar.java
Class
WildcardMatch.java
Class
Tests if the target matches the wildcard expression given in the argument.
w_w___w_._j_ava___2__s._co__m
|
Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.