Java Doc for Expr.java in  » EJB-Server-resin-3.1.5 » resin » com » caucho » db » sql » 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 » EJB Server resin 3.1.5 » resin » com.caucho.db.sql 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.caucho.db.sql.Expr

All known Subclasses:   com.caucho.db.sql.UnaryExpr,  com.caucho.db.sql.UnboundIdentifierExpr,  com.caucho.db.sql.StringEqExpr,  com.caucho.db.sql.ConcatExpr,  com.caucho.db.sql.AndExpr,  com.caucho.db.sql.DoubleCmpExpr,  com.caucho.db.sql.InExpr,  com.caucho.db.sql.RowIterateExpr,  com.caucho.db.sql.DefaultExpr,  com.caucho.db.sql.SubSelectExpr,  com.caucho.db.sql.OidExpr,  com.caucho.db.sql.BooleanLiteralExpr,  com.caucho.db.sql.OrExpr,  com.caucho.db.sql.BinaryExpr,  com.caucho.db.sql.UnboundStarExpr,  com.caucho.db.sql.BinaryLongExpr,  com.caucho.db.sql.AutoIncrementExpr,  com.caucho.db.sql.ParamExpr,  com.caucho.db.sql.DoubleExpr,  com.caucho.db.sql.FunExpr,  com.caucho.db.sql.NullExpr,  com.caucho.db.sql.BetweenExpr,  com.caucho.db.sql.IsNullExpr,  com.caucho.db.sql.LongExpr,  com.caucho.db.sql.EqExpr,  com.caucho.db.sql.IdExpr,  com.caucho.db.sql.LikeExpr,  com.caucho.db.sql.StarExpr,  com.caucho.db.sql.SubSelectEvalExpr,  com.caucho.db.sql.GroupResultExpr,  com.caucho.db.sql.StringExpr,  com.caucho.db.sql.BinaryEqExpr,  com.caucho.db.sql.ColumnExpr,  com.caucho.db.sql.SubSelectParamExpr,  com.caucho.db.sql.ExistsEvalExpr,  com.caucho.db.sql.BinaryDoubleExpr,  com.caucho.db.sql.CmpExpr,  com.caucho.db.sql.NotExpr,  com.caucho.db.sql.NumberExpr,
Expr
abstract public class Expr (Code)


Field Summary
final static  longCOST_CONSTANT
    
final static  longCOST_INDEX
    
final static  longCOST_INVALID
    
final static  longCOST_NO_TABLE
    
final static  longCOST_SCAN
    
final static  longCOST_UNIQUE
    
final public static  intFALSE
    
final protected static  L10NL
    
final public static  intTRUE
    
final public static  intUNKNOWN
    


Method Summary
protected  Exprbind(Query query)
    
public  longcost(ArrayList<FromItem> fromList)
     Returns the cost based on the given FromList.
public  OrdercreateOrder(int index)
     Returns the order.
public  intevalBoolean(QueryContext context)
     Evaluates the expression as a boolean.
public  longevalDate(QueryContext context)
     Evaluates the expression as a date.
public  doubleevalDouble(QueryContext context)
     Evaluates the expression as a double.
public  voidevalGroup(QueryContext context)
     Evaluates aggregate functions during the group phase.
public  longevalLong(QueryContext context)
     Evaluates the expression as a long.
public  InputStreamevalStream(QueryContext context)
     Evaluates the expression as a string.
public  StringevalString(QueryContext context)
     Evaluates the expression as a string.
public  intevalToBuffer(QueryContext context, byte[] buffer, int columnType)
    
public  voidevalToResult(QueryContext context, SelectResult result)
     Evaluates the expression, writing to the result stream.
public  RowIterateExprgetIndexExpr(FromItem fromItem)
     Returns an index expression if available.
public  StringgetName()
     Returns any column name.
public  intgetSQLType()
     Returns the column type.
public  TablegetTable()
     Returns the table.
public  ClassgetType()
     Returns the expected result type of the expression.
public  voidinitGroup(QueryContext context)
     Initializes aggregate functions during the group phase.
public  booleanisBinaryStream()
     Returns true if the expression returns a binary stream.
public  booleanisBoolean()
     Returns true if the expression returns a boolean.
public  booleanisDouble()
     Returns true if the expression returns a double.
public  booleanisLong()
     Returns true if the expression returns a long.
public  booleanisNull(QueryContext context)
    
public  booleanisSelect(QueryContext context)
     Returns true if the expression selects the row.
public  voidsplitAnd(ArrayList<Expr> andProduct)
     Splits the expr into and blocks.
public  longsubCost(ArrayList<FromItem> fromList)
     Returns the cost based on the given FromList.

Field Detail
COST_CONSTANT
final static long COST_CONSTANT(Code)



COST_INDEX
final static long COST_INDEX(Code)



COST_INVALID
final static long COST_INVALID(Code)



COST_NO_TABLE
final static long COST_NO_TABLE(Code)



COST_SCAN
final static long COST_SCAN(Code)



COST_UNIQUE
final static long COST_UNIQUE(Code)



FALSE
final public static int FALSE(Code)



L
final protected static L10N L(Code)



TRUE
final public static int TRUE(Code)



UNKNOWN
final public static int UNKNOWN(Code)





Method Detail
bind
protected Expr bind(Query query) throws SQLException(Code)



cost
public long cost(ArrayList<FromItem> fromList)(Code)
Returns the cost based on the given FromList.



createOrder
public Order createOrder(int index)(Code)
Returns the order.



evalBoolean
public int evalBoolean(QueryContext context) throws SQLException(Code)
Evaluates the expression as a boolean.
Parameters:
  rows - the current database tuple the boolean value



evalDate
public long evalDate(QueryContext context) throws SQLException(Code)
Evaluates the expression as a date.
Parameters:
  rows - the current database tuple the double value



evalDouble
public double evalDouble(QueryContext context) throws SQLException(Code)
Evaluates the expression as a double.
Parameters:
  rows - the current database tuple the double value



evalGroup
public void evalGroup(QueryContext context) throws SQLException(Code)
Evaluates aggregate functions during the group phase.
Parameters:
  context - the current database tuple



evalLong
public long evalLong(QueryContext context) throws SQLException(Code)
Evaluates the expression as a long.
Parameters:
  rows - the current database tuple the long value



evalStream
public InputStream evalStream(QueryContext context) throws SQLException(Code)
Evaluates the expression as a string.
Parameters:
  rows - the current database tuple the string value



evalString
public String evalString(QueryContext context) throws SQLException(Code)
Evaluates the expression as a string.
Parameters:
  rows - the current database tuple the string value



evalToBuffer
public int evalToBuffer(QueryContext context, byte[] buffer, int columnType) throws SQLException(Code)
Evaluates the expression to a buffer
Parameters:
  result - the result buffer the length of the result



evalToResult
public void evalToResult(QueryContext context, SelectResult result) throws SQLException(Code)
Evaluates the expression, writing to the result stream.
Parameters:
  result - the output result



getIndexExpr
public RowIterateExpr getIndexExpr(FromItem fromItem)(Code)
Returns an index expression if available.



getName
public String getName()(Code)
Returns any column name.



getSQLType
public int getSQLType()(Code)
Returns the column type.



getTable
public Table getTable()(Code)
Returns the table.



getType
public Class getType()(Code)
Returns the expected result type of the expression.



initGroup
public void initGroup(QueryContext context) throws SQLException(Code)
Initializes aggregate functions during the group phase.
Parameters:
  context - the current database tuple



isBinaryStream
public boolean isBinaryStream()(Code)
Returns true if the expression returns a binary stream.



isBoolean
public boolean isBoolean()(Code)
Returns true if the expression returns a boolean.



isDouble
public boolean isDouble()(Code)
Returns true if the expression returns a double.



isLong
public boolean isLong()(Code)
Returns true if the expression returns a long.



isNull
public boolean isNull(QueryContext context) throws SQLException(Code)
Returns true if result is null
Parameters:
  rows - the current database tuple true if null



isSelect
public boolean isSelect(QueryContext context) throws SQLException(Code)
Returns true if the expression selects the row.
Parameters:
  rows - the current database tuple the boolean value



splitAnd
public void splitAnd(ArrayList<Expr> andProduct)(Code)
Splits the expr into and blocks.



subCost
public long subCost(ArrayList<FromItem> fromList)(Code)
Returns the cost based on the given FromList.



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.