Java Doc for StringExpression.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.StringExpression

All known Subclasses:   org.jpox.store.expression.ConcatOperatorExpression,  org.jpox.store.expression.StringLiteral,  org.jpox.store.expression.SubstringExpression,
StringExpression
public class StringExpression extends ScalarExpression (Code)
Representation of an expression with a string.
version:
   $Revision: 1.24 $



Constructor Summary
protected  StringExpression(QueryExpression qs)
    
public  StringExpression(QueryExpression qs, JavaTypeMapping mapping, LogicSetExpression te)
    
public  StringExpression(String functionName, List args)
     Generates statement as e.g.
public  StringExpression(String functionName, List args, List types)
     Generates statement as e.g.
public  StringExpression(ScalarExpression operand1, DyadicOperator op, ScalarExpression operand2)
     Performs a function on two arguments.

Method Summary
public  ScalarExpressionadd(ScalarExpression expr)
    
public  StringExpressioncharAtMethod(ScalarExpression index)
     Returns the character at a position.
Parameters:
  index - The position of the character required.
public  BooleanExpressionendsWithMethod(ScalarExpression str)
     Returns whether this string ends with the specified string.
Parameters:
  str - The string to compare against.
public  BooleanExpressioneq(ScalarExpression expr)
    
public  BooleanExpressionequalsMethod(ScalarExpression expr)
     Returns whether this string is equal to the expression.
public  BooleanExpressiongt(ScalarExpression expr)
    
public  BooleanExpressiongteq(ScalarExpression expr)
    
public  BooleanExpressionin(ScalarExpression expr)
    
public  NumericExpressionindexOfMethod(ScalarExpression str)
     Returns the index within this string of the first occurrence of the specified string.
public  NumericExpressionindexOfMethod(ScalarExpression str, ScalarExpression fromIndex)
     Returns the index within this string of the first occurrence of the specified character, starting the search at the specified index.
public  NumericExpressionlengthMethod()
     Method to handle the starts with operation.
public  BooleanExpressionlikeMethod(ScalarExpression expr)
     Perform a database "like" operation
Parameters:
  expr - The expression with the pattern.
public  BooleanExpressionlt(ScalarExpression expr)
    
public  BooleanExpressionlteq(ScalarExpression expr)
    
public  BooleanExpressionmatchesMethod(ScalarExpression expr)
     Matches this to the argument expression pattern.
public  BooleanExpressionnoteq(ScalarExpression expr)
    
public  BooleanExpressionstartsWithMethod(ScalarExpression str)
     Method to handle the starts with operation.
public  BooleanExpressionstartsWithMethod(ScalarExpression str, ScalarExpression toffset)
     Method to handle the starts with operation.
public  StringExpressionsubstringMethod(ScalarExpression begin)
     Method to handle the substring operation.
public  StringExpressionsubstringMethod(ScalarExpression begin, ScalarExpression end)
     Method to handle the substring operation.
public  StringExpressiontoLowerCaseMethod()
     Method to handle the lower case operation.
public  StringExpressiontoUpperCaseMethod()
     Method to handle the upper case operation.
public  StringExpressiontranslateMethod(ScalarExpression toExpr, ScalarExpression fromExpr)
     Method to translate all chars in this expression to the fromExpr which corresponds to toExpr.
public  StringExpressiontrimLeftMethod()
     Method to handle trimming of the left side of a string (leading spaces).
public  StringExpressiontrimMethod()
     Method to handle trimming of both ends of a string.
public  StringExpressiontrimRightMethod()
     Method to handle trimming of the right side of a string (trailing spaces).


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



StringExpression
public StringExpression(QueryExpression qs, JavaTypeMapping mapping, LogicSetExpression te)(Code)

Parameters:
  qs - the QueryExpression
Parameters:
  mapping - the mapping associated to this expression
Parameters:
  te - the TableExpression where this expression refers to



StringExpression
public StringExpression(String functionName, List args)(Code)
Generates statement as e.g. FUNCTION_NAME(arg[,argN])
Parameters:
  functionName -
Parameters:
  args - ScalarExpression list



StringExpression
public StringExpression(String functionName, List args, List types)(Code)
Generates statement as e.g. FUNCTION_NAME(arg AS type[,argN as typeN])
Parameters:
  functionName - Name of function
Parameters:
  args - ScalarExpression list
Parameters:
  types - String or ScalarExpression list



StringExpression
public StringExpression(ScalarExpression operand1, DyadicOperator op, ScalarExpression operand2)(Code)
Performs a function on two arguments. op(operand1,operand2) operand1 op operand2
Parameters:
  operand1 - the first expression
Parameters:
  op - the operator between operands
Parameters:
  operand2 - the second expression




Method Detail
add
public ScalarExpression add(ScalarExpression expr)(Code)



charAtMethod
public StringExpression charAtMethod(ScalarExpression index)(Code)
Returns the character at a position.
Parameters:
  index - The position of the character required. The expression.



endsWithMethod
public BooleanExpression endsWithMethod(ScalarExpression str)(Code)
Returns whether this string ends with the specified string.
Parameters:
  str - The string to compare against. Whether it ends with the string.



eq
public BooleanExpression eq(ScalarExpression expr)(Code)



equalsMethod
public BooleanExpression equalsMethod(ScalarExpression expr)(Code)
Returns whether this string is equal to the expression. This is provided as an operation on String.
Parameters:
  expr - The expression to compare against. Expression whether they are equal.



gt
public BooleanExpression gt(ScalarExpression expr)(Code)



gteq
public BooleanExpression gteq(ScalarExpression expr)(Code)



in
public BooleanExpression in(ScalarExpression expr)(Code)



indexOfMethod
public NumericExpression indexOfMethod(ScalarExpression str)(Code)
Returns the index within this string of the first occurrence of the specified string.
Parameters:
  str - The string to find the index of The index of the string.



indexOfMethod
public NumericExpression indexOfMethod(ScalarExpression str, ScalarExpression fromIndex)(Code)
Returns the index within this string of the first occurrence of the specified character, starting the search at the specified index.
Parameters:
  str - The string to find the index of
Parameters:
  fromIndex - the index to start the search from. The index of the string.



lengthMethod
public NumericExpression lengthMethod()(Code)
Method to handle the starts with operation. The expression.



likeMethod
public BooleanExpression likeMethod(ScalarExpression expr)(Code)
Perform a database "like" operation
Parameters:
  expr - The expression with the pattern. the match expression.



lt
public BooleanExpression lt(ScalarExpression expr)(Code)



lteq
public BooleanExpression lteq(ScalarExpression expr)(Code)



matchesMethod
public BooleanExpression matchesMethod(ScalarExpression expr)(Code)
Matches this to the argument expression pattern. Use "." to find any character and ".*" for wildcard matches. A global case-insensitive flag "(?i)" can be set for the pattern. If used, the global case-insensitive flag must prefix the pattern. The pattern passed to matches must be a literal or parameter.
Parameters:
  expr - The literal expression with the pattern. the match expression.



noteq
public BooleanExpression noteq(ScalarExpression expr)(Code)



startsWithMethod
public BooleanExpression startsWithMethod(ScalarExpression str)(Code)
Method to handle the starts with operation.
Parameters:
  str - The string to compare against The expression.



startsWithMethod
public BooleanExpression startsWithMethod(ScalarExpression str, ScalarExpression toffset)(Code)
Method to handle the starts with operation.
Parameters:
  str - The string to compare against
Parameters:
  toffset - The offset The expression.



substringMethod
public StringExpression substringMethod(ScalarExpression begin)(Code)
Method to handle the substring operation.
Parameters:
  begin - The start position The expression.



substringMethod
public StringExpression substringMethod(ScalarExpression begin, ScalarExpression end)(Code)
Method to handle the substring operation.
Parameters:
  begin - The start position
Parameters:
  end - The end position The expression.



toLowerCaseMethod
public StringExpression toLowerCaseMethod()(Code)
Method to handle the lower case operation. The expression.



toUpperCaseMethod
public StringExpression toUpperCaseMethod()(Code)
Method to handle the upper case operation. The expression.



translateMethod
public StringExpression translateMethod(ScalarExpression toExpr, ScalarExpression fromExpr)(Code)
Method to translate all chars in this expression to the fromExpr which corresponds to toExpr. The expression.



trimLeftMethod
public StringExpression trimLeftMethod()(Code)
Method to handle trimming of the left side of a string (leading spaces). The expression.



trimMethod
public StringExpression trimMethod()(Code)
Method to handle trimming of both ends of a string. The expression.



trimRightMethod
public StringExpression trimRightMethod()(Code)
Method to handle trimming of the right side of a string (trailing spaces). The expression.



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.