Java Doc for ObjectExpression.java in  » Database-ORM » JPOX » org » jpox » store » expression » Java Source Code / Java DocumentationJava Source Code and Java Documentation

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 » JPOX » org.jpox.store.expression 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.jpox.store.expression.ScalarExpression
      org.jpox.store.expression.ObjectExpression

All known Subclasses:   org.jpox.store.expression.ObjectLiteral,
ObjectExpression
public class ObjectExpression extends ScalarExpression (Code)
Representation of an Object expression in a Query. Let's take an example :-
 We have classes A and B, and A contains a reference to B "b".
 If we do a JDOQL query for class A of "b.someField == value" then
 "b" is interpreted first and an ObjectExpression is created to represent
 that object (of type B).
 
The expression has an associated TableExpression, and a list of expressions which represent the datastore columns identifying the object (the PK fields/columns).
version:
   $Revision: 1.59 $


Field Summary
protected  ScalarExpressionconditionExpr
    

Constructor Summary
protected  ObjectExpression(QueryExpression qs)
    
public  ObjectExpression(QueryExpression qs, JavaTypeMapping mapping, LogicSetExpression te)
     Constructor for an object expression, using the mapping of the field, and the expression for the table.
public  ObjectExpression(QueryExpression qs, JavaTypeMapping mapping, LogicSetExpression te, JavaTypeMapping refMapping, LogicSetExpression teTarget, JavaTypeMapping selectMapping)
     Constructor for an object expression, using the mapping of the field (which has no datastore columns), the expression for its table, the mapping for a field in another table to join to, and the expression for the other table.
public  ObjectExpression(QueryExpression qs, ScalarExpression expr, ScalarExpression conditionExpr, LogicSetExpression te)
    

Method Summary
public  ScalarExpressionaccessField(String subfieldName, boolean innerJoin)
     Access a field in the object that this expression represents. If the field is contained in a different table then will use the "innerJoin" input parameter and make a join to the required table.
public  voidaddOuterJoinSuffix(String suffix)
     Convenience method to add an outer join suffix.
public  ScalarExpressioncast(Class castType)
     Cast operator.
public  BooleanExpressioneq(ScalarExpression expr)
     Equals operator.
public  BooleanExpressionin(ScalarExpression expr)
    
public  BooleanExpressioninstanceOf(ScalarExpression expr)
     Method to return a constraint for restricting the field to just instances of a particular class.
Parameters:
  expr - Expression for the class that we want instances of (a ClassExpression).
public  BooleanExpressionnoteq(ScalarExpression expr)
     Not equals operator.
public  voidsetFieldDefinition(String fieldName, String fieldType)
     Set the field which this expression was created from.
 voiduseFirstDatastoreFieldOnly()
     Method to change the expression to use only the first datastore field. This is used where we want to use the expression in an aggregate and only can use one datastore field.
public  voiduseIdentityFormOfPCMapping()
     Convenience method for the case where the mapping being used is a PersistenceCapableMapping and where we want to represent the identity instead of the object represented by that mapping.

Field Detail
conditionExpr
protected ScalarExpression conditionExpr(Code)




Constructor Detail
ObjectExpression
protected ObjectExpression(QueryExpression qs)(Code)



ObjectExpression
public ObjectExpression(QueryExpression qs, JavaTypeMapping mapping, LogicSetExpression te)(Code)
Constructor for an object expression, using the mapping of the field, and the expression for the table.
Parameters:
  qs - The Query Statement
Parameters:
  mapping - The mapping for the field whose object we are expressing
Parameters:
  te - The expression for the table of the object.



ObjectExpression
public ObjectExpression(QueryExpression qs, JavaTypeMapping mapping, LogicSetExpression te, JavaTypeMapping refMapping, LogicSetExpression teTarget, JavaTypeMapping selectMapping)(Code)
Constructor for an object expression, using the mapping of the field (which has no datastore columns), the expression for its table, the mapping for a field in another table to join to, and the expression for the other table. This is for use in 2 situations :-
  • a 1-1 bidirectional single-FK relation where one side has its FK stored in the other object, so we need to left outer join to get that field.
  • a 1-N bidirectional join table relation where the element side has to navigate via the join table to get to the owner object.

Parameters:
  qs - The Query Statement
Parameters:
  mapping - The mapping for the field whose object we are expressing
Parameters:
  te - The expression for the table of the object
Parameters:
  refMapping - The mapping of the field in another table that we join to
Parameters:
  teTarget - The expression for the other table that we are joining to.
Parameters:
  selectMapping - The mapping that we should select in the other table



ObjectExpression
public ObjectExpression(QueryExpression qs, ScalarExpression expr, ScalarExpression conditionExpr, LogicSetExpression te)(Code)
Construct an object expression conditioned to a boolean expression If this expression is an operand of an operation with result type Boolean has the following semantic if (conditionExpr == null ) return (otherExpression op expr); else return (otherExpression op expr) & conditionExpr;
Parameters:
  qs - the QueryExpression
Parameters:
  expr - the expression
Parameters:
  conditionExpr - the conditional boolean expression
Parameters:
  te - the TableExpression




Method Detail
accessField
public ScalarExpression accessField(String subfieldName, boolean innerJoin)(Code)
Access a field in the object that this expression represents. If the field is contained in a different table then will use the "innerJoin" input parameter and make a join to the required table. If the field is a 1-1 relation and the current table holds the FK then no join will be made.
Parameters:
  subfieldName - the field to be accessed in this object
Parameters:
  innerJoin - whether to inner join The field expression representing the required field of this object



addOuterJoinSuffix
public void addOuterJoinSuffix(String suffix)(Code)
Convenience method to add an outer join suffix. Particularly for use with Oracle (8) which uses syntax like table1.col1 = table2.col2 (+),
Parameters:
  suffix - The suffix



cast
public ScalarExpression cast(Class castType)(Code)
Cast operator. Called when the query contains "(type)obj" where "obj" is this object.
Parameters:
  castType - The type we cast this object to Scalar expression representing the cast object.



eq
public BooleanExpression eq(ScalarExpression expr)(Code)
Equals operator. Called when the query contains "obj == value" where "obj" is this object.
Parameters:
  expr - The expression we compare with (the right-hand-side in the query) Boolean expression representing the comparison.



in
public BooleanExpression in(ScalarExpression expr)(Code)



instanceOf
public BooleanExpression instanceOf(ScalarExpression expr)(Code)
Method to return a constraint for restricting the field to just instances of a particular class.
Parameters:
  expr - Expression for the class that we want instances of (a ClassExpression). The expression for the instanceof clause



noteq
public BooleanExpression noteq(ScalarExpression expr)(Code)
Not equals operator. Called when the query contains "obj != value" where "obj" is this object.
Parameters:
  expr - The expression we compare with (the right-hand-side in the query) Boolean expression representing the comparison.



setFieldDefinition
public void setFieldDefinition(String fieldName, String fieldType)(Code)
Set the field which this expression was created from.
Parameters:
  fieldName - The fieldName to set.
Parameters:
  fieldType - The fieldType to set



useFirstDatastoreFieldOnly
void useFirstDatastoreFieldOnly()(Code)
Method to change the expression to use only the first datastore field. This is used where we want to use the expression in an aggregate and only can use one datastore field. Package permission to prevent external access.



useIdentityFormOfPCMapping
public void useIdentityFormOfPCMapping()(Code)
Convenience method for the case where the mapping being used is a PersistenceCapableMapping and where we want to represent the identity instead of the object represented by that mapping. This changes the mapping to use the id.



Fields inherited from org.jpox.store.expression.ScalarExpression
public static int FILTER(Code)(Java Doc)
final protected static Localiser LOCALISER(Code)(Java Doc)
final public static DyadicOperator OP_ADD(Code)(Java Doc)
final public static DyadicOperator OP_AND(Code)(Java Doc)
final public static DyadicOperator OP_BETWEEN(Code)(Java Doc)
final public static MonadicOperator OP_COM(Code)(Java Doc)
final public static DyadicOperator OP_CONCAT(Code)(Java Doc)
final public static DyadicOperator OP_DIV(Code)(Java Doc)
final public static DyadicOperator OP_EQ(Code)(Java Doc)
final public static DyadicOperator OP_GT(Code)(Java Doc)
final public static DyadicOperator OP_GTEQ(Code)(Java Doc)
final public static DyadicOperator OP_IN(Code)(Java Doc)
final public static DyadicOperator OP_IS(Code)(Java Doc)
final public static DyadicOperator OP_ISNOT(Code)(Java Doc)
final public static DyadicOperator OP_LIKE(Code)(Java Doc)
final public static DyadicOperator OP_LT(Code)(Java Doc)
final public static DyadicOperator OP_LTEQ(Code)(Java Doc)
final public static DyadicOperator OP_MOD(Code)(Java Doc)
final public static DyadicOperator OP_MUL(Code)(Java Doc)
final public static MonadicOperator OP_NEG(Code)(Java Doc)
final public static MonadicOperator OP_NOT(Code)(Java Doc)
final public static DyadicOperator OP_NOTEQ(Code)(Java Doc)
final public static DyadicOperator OP_NOTIN(Code)(Java Doc)
final public static DyadicOperator OP_NOTLIKE(Code)(Java Doc)
final public static DyadicOperator OP_OR(Code)(Java Doc)
final public static DyadicOperator OP_SUB(Code)(Java Doc)
public static int PROJECTION(Code)(Java Doc)
protected String aliasIdentifier(Code)(Java Doc)
protected boolean checkForTypeAssignability(Code)(Java Doc)
protected ExpressionList expressionList(Code)(Java Doc)
protected Operator lowestOperator(Code)(Java Doc)
protected JavaTypeMapping mapping(Code)(Java Doc)
protected String parameterName(Code)(Java Doc)
final protected QueryExpression qs(Code)(Java Doc)
final protected StatementText st(Code)(Java Doc)
protected LogicSetExpression te(Code)(Java Doc)

Methods inherited from org.jpox.store.expression.ScalarExpression
public ScalarExpression accessField(String fieldName, boolean innerJoin)(Code)(Java Doc)
public ScalarExpression add(ScalarExpression expr)(Code)(Java Doc)
public BooleanExpression and(ScalarExpression expr)(Code)(Java Doc)
public ScalarExpression as(String aliasIdentifier)(Code)(Java Doc)
protected void assertValidTypeForParameterComparison(ScalarExpression expr, Class type)(Code)(Java Doc)
public ScalarExpression callMethod(String methodName, List arguments)(Code)(Java Doc)
public ScalarExpression cast(Class type)(Code)(Java Doc)
public void checkForTypeAssignability()(Code)(Java Doc)
public ScalarExpression com()(Code)(Java Doc)
public ScalarExpression div(ScalarExpression expr)(Code)(Java Doc)
public ScalarExpression encloseWithInParentheses()(Code)(Java Doc)
public BooleanExpression eor(ScalarExpression expr)(Code)(Java Doc)
public BooleanExpression eq(ScalarExpression expr)(Code)(Java Doc)
public boolean equals(Object o)(Code)(Java Doc)
public String getAlias()(Code)(Java Doc)
protected ScalarExpression getConsistentTypeForParameterComparison(ScalarExpression expr)(Code)(Java Doc)
public ExpressionList getExpressionList()(Code)(Java Doc)
public LogicSetExpression getLogicSetExpression()(Code)(Java Doc)
public JavaTypeMapping getMapping()(Code)(Java Doc)
public String getNonAliasExpression()(Code)(Java Doc)
public String getParameterName()(Code)(Java Doc)
public QueryExpression getQueryExpression()(Code)(Java Doc)
public BooleanExpression gt(ScalarExpression expr)(Code)(Java Doc)
public BooleanExpression gteq(ScalarExpression expr)(Code)(Java Doc)
public BooleanExpression in(ScalarExpression expr)(Code)(Java Doc)
public BooleanExpression instanceOf(ScalarExpression expr)(Code)(Java Doc)
public BooleanExpression ior(ScalarExpression expr)(Code)(Java Doc)
public boolean isParameter()(Code)(Java Doc)
public BooleanExpression lt(ScalarExpression expr)(Code)(Java Doc)
public BooleanExpression lteq(ScalarExpression expr)(Code)(Java Doc)
public ScalarExpression mod(ScalarExpression expr)(Code)(Java Doc)
public ScalarExpression mul(ScalarExpression expr)(Code)(Java Doc)
public ScalarExpression neg()(Code)(Java Doc)
public BooleanExpression not()(Code)(Java Doc)
public BooleanExpression noteq(ScalarExpression expr)(Code)(Java Doc)
public void setParameterName(String paramName)(Code)(Java Doc)
public ScalarExpression sub(ScalarExpression expr)(Code)(Java Doc)
public StatementText toStatementText(int mode)(Code)(Java Doc)
public String toString()(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

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