| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
| <!--NewPage--> |
| <HTML> |
| <HEAD> |
| <!-- Generated by javadoc (build 1.6.0) on Fri Oct 16 14:57:50 EDT 2009 --> |
| <TITLE> |
| Expression (EclipseLink 1.2.0, build 'v20091016-r5565' API Reference) |
| </TITLE> |
| |
| <META NAME="date" CONTENT="2009-10-16"> |
| |
| <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style"> |
| |
| <SCRIPT type="text/javascript"> |
| function windowTitle() |
| { |
| if (location.href.indexOf('is-external=true') == -1) { |
| parent.document.title="Expression (EclipseLink 1.2.0, build 'v20091016-r5565' API Reference)"; |
| } |
| } |
| </SCRIPT> |
| <NOSCRIPT> |
| </NOSCRIPT> |
| |
| </HEAD> |
| |
| <BODY BGCOLOR="white" onload="windowTitle();"> |
| <HR> |
| |
| |
| <!-- ========= START OF TOP NAVBAR ======= --> |
| <A NAME="navbar_top"><!-- --></A> |
| <A HREF="#skip-navbar_top" title="Skip navigation links"></A> |
| <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> |
| <TR> |
| <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> |
| <A NAME="navbar_top_firstrow"><!-- --></A> |
| <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> |
| <TR ALIGN="center" VALIGN="top"> |
| <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD> |
| <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD> |
| <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD> |
| <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD> |
| <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../serialized-form.html"><FONT CLASS="NavBarFont1"><B>Serialized</B></FONT></A> </TD> |
| <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD> |
| <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD> |
| <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD> |
| </TR> |
| </TABLE> |
| </TD> |
| <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> |
| EclipseLink 1.2.0, build 'v20091016-r5565' API Reference</EM> |
| </TD> |
| </TR> |
| |
| <TR> |
| <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> |
| PREV CLASS |
| <A HREF="../../../../org/eclipse/persistence/expressions/ExpressionBuilder.html" title="class in org.eclipse.persistence.expressions"><B>NEXT CLASS</B></A></FONT></TD> |
| <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> |
| <A HREF="../../../../index.html?org/eclipse/persistence/expressions/Expression.html" target="_top"><B>FRAMES</B></A> |
| <A HREF="Expression.html" target="_top"><B>NO FRAMES</B></A> |
| <SCRIPT type="text/javascript"> |
| <!-- |
| if(window==top) { |
| document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); |
| } |
| //--> |
| </SCRIPT> |
| <NOSCRIPT> |
| <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> |
| </NOSCRIPT> |
| |
| |
| </FONT></TD> |
| </TR> |
| <TR> |
| <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> |
| SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD> |
| <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> |
| DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD> |
| </TR> |
| </TABLE> |
| <A NAME="skip-navbar_top"></A> |
| <!-- ========= END OF TOP NAVBAR ========= --> |
| |
| <HR> |
| <!-- ======== START OF CLASS DATA ======== --> |
| <H2> |
| <FONT SIZE="-1"> |
| org.eclipse.persistence.expressions</FONT> |
| <BR> |
| Class Expression</H2> |
| <PRE> |
| java.lang.Object |
| <IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>org.eclipse.persistence.expressions.Expression</B> |
| </PRE> |
| <DL> |
| <DT><B>All Implemented Interfaces:</B> <DD>java.io.Serializable, java.lang.Cloneable</DD> |
| </DL> |
| <DL> |
| <DT><B>Direct Known Subclasses:</B> <DD>org.eclipse.persistence.internal.expressions.BaseExpression</DD> |
| </DL> |
| <HR> |
| <DL> |
| <DT><PRE>public abstract class <B>Expression</B><DT>extends java.lang.Object<DT>implements java.io.Serializable, java.lang.Cloneable</DL> |
| </PRE> |
| |
| <P> |
| <p> |
| <b>Purpose</b>: Define an object-level representation of a database query where clause.</p> |
| <p> |
| <b>Description</b>: An expression is a tree-like structure that defines the selection |
| criteria for a query against objects in the database. The expression has the advantage |
| over SQL by being at the object-level, i.e. the object model attributes and relationships |
| can be used to be query on instead of the database field names. |
| Because it is an object, not a string the expression has the advantage that is can be |
| easily manipulated through code to easily build complex selection criterias.</p> |
| <p> |
| <b>Responsibilities</b>: |
| <ul> |
| <li> Store the selection criteria in a tree-like structure. |
| <li> Support public manipulation protocols for all comparison and function operators. |
| <li> Use operator overloading to support all primitive types as well as objects. |
| </ul></p> |
| <P> |
| |
| <P> |
| <DL> |
| <DT><B>See Also:</B><DD><A HREF="../../../../serialized-form.html#org.eclipse.persistence.expressions.Expression">Serialized Form</A></DL> |
| <HR> |
| |
| <P> |
| <!-- =========== FIELD SUMMARY =========== --> |
| |
| <A NAME="field_summary"><!-- --></A> |
| <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> |
| <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> |
| <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> |
| <B>Field Summary</B></FONT></TH> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE>protected org.eclipse.persistence.internal.helper.DatabaseTable</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#currentAlias">currentAlias</A></B></CODE> |
| |
| <BR> |
| </TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE>protected int</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#hashCode">hashCode</A></B></CODE> |
| |
| <BR> |
| PERF: Cache the hashCode.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE>protected org.eclipse.persistence.internal.helper.DatabaseTable</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#lastTable">lastTable</A></B></CODE> |
| |
| <BR> |
| Temporary values for table aliasing</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE>protected boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#selectIfOrderedBy">selectIfOrderedBy</A></B></CODE> |
| |
| <BR> |
| </TD> |
| </TR> |
| </TABLE> |
| |
| <!-- ======== CONSTRUCTOR SUMMARY ======== --> |
| |
| <A NAME="constructor_summary"><!-- --></A> |
| <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> |
| <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> |
| <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> |
| <B>Constructor Summary</B></FONT></TH> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#Expression()">Expression</A></B>()</CODE> |
| |
| <BR> |
| Base Expression Constructor.</TD> |
| </TR> |
| </TABLE> |
| |
| <!-- ========== METHOD SUMMARY =========== --> |
| |
| <A NAME="method_summary"><!-- --></A> |
| <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> |
| <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> |
| <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> |
| <B>Method Summary</B></FONT></TH> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#addDate(java.lang.String, int)">addDate</A></B>(java.lang.String datePart, |
| int numberToAdd)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, return an expression that adds to a date based on |
| the specified datePart.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#addDate(java.lang.String, java.lang.Object)">addDate</A></B>(java.lang.String datePart, |
| java.lang.Object numberToAdd)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, return an expression that adds to a date based on |
| the specified datePart.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#addMonths(int)">addMonths</A></B>(int months)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, to add months to a date.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#addMonths(java.lang.Object)">addMonths</A></B>(java.lang.Object months)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, to add months to a date.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> org.eclipse.persistence.internal.helper.DatabaseTable</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#aliasForTable(org.eclipse.persistence.internal.helper.DatabaseTable)">aliasForTable</A></B>(org.eclipse.persistence.internal.helper.DatabaseTable table)</CODE> |
| |
| <BR> |
| INTERNAL: |
| Find the alias for a given table</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#all(boolean[])">all</A></B>(boolean[] theBooleans)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#all(byte[])">all</A></B>(byte[] theBytes)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that is used with a comparison expression.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#all(char[])">all</A></B>(char[] theChars)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#all(double[])">all</A></B>(double[] theDoubles)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#all(org.eclipse.persistence.expressions.Expression)">all</A></B>(<A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> arguments)</CODE> |
| |
| <BR> |
| </TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#all(float[])">all</A></B>(float[] theFloats)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#all(int[])">all</A></B>(int[] theInts)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#all(long[])">all</A></B>(long[] theLongs)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#all(java.lang.Object[])">all</A></B>(java.lang.Object[] theObjects)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#all(org.eclipse.persistence.queries.ReportQuery)">all</A></B>(<A HREF="../../../../org/eclipse/persistence/queries/ReportQuery.html" title="class in org.eclipse.persistence.queries">ReportQuery</A> subQuery)</CODE> |
| |
| <BR> |
| </TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#all(short[])">all</A></B>(short[] theShorts)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#all(java.util.Vector)">all</A></B>(java.util.Vector theObjects)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#allOf(java.lang.String, org.eclipse.persistence.expressions.Expression)">allOf</A></B>(java.lang.String attributeName, |
| <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> criteria)</CODE> |
| |
| <BR> |
| PUBLIC: Returns an expression equivalent to all of <code>attributeName</code> |
| holding true for <code>criteria</code>.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#and(org.eclipse.persistence.expressions.Expression)">and</A></B>(<A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> theExpression)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that is the boolean logical combination of both expressions.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#any(boolean[])">any</A></B>(boolean[] theBooleans)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#any(byte[])">any</A></B>(byte[] theBytes)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that is used with a comparison expression.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#any(char[])">any</A></B>(char[] theChars)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#any(double[])">any</A></B>(double[] theDoubles)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#any(org.eclipse.persistence.expressions.Expression)">any</A></B>(<A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> arguments)</CODE> |
| |
| <BR> |
| </TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#any(float[])">any</A></B>(float[] theFloats)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#any(int[])">any</A></B>(int[] theInts)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#any(long[])">any</A></B>(long[] theLongs)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#any(java.lang.Object[])">any</A></B>(java.lang.Object[] theObjects)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#any(org.eclipse.persistence.queries.ReportQuery)">any</A></B>(<A HREF="../../../../org/eclipse/persistence/queries/ReportQuery.html" title="class in org.eclipse.persistence.queries">ReportQuery</A> subQuery)</CODE> |
| |
| <BR> |
| </TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#any(short[])">any</A></B>(short[] theShorts)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#any(java.util.Vector)">any</A></B>(java.util.Vector theObjects)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#anyOf(java.lang.String)">anyOf</A></B>(java.lang.String attributeName)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression representing traversal of a 1:many or many:many relationship.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#anyOfAllowingNone(java.lang.String)">anyOfAllowingNone</A></B>(java.lang.String attributeName)</CODE> |
| |
| <BR> |
| ADVANCED: |
| Return an expression representing traversal of a 1:many or many:many relationship.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#ascending()">ascending</A></B>()</CODE> |
| |
| <BR> |
| PUBLIC: |
| This can only be used within an ordering expression.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#asciiValue()">asciiValue</A></B>()</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, returns the single character strings ascii value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#asOf(org.eclipse.persistence.history.AsOfClause)">asOf</A></B>(<A HREF="../../../../org/eclipse/persistence/history/AsOfClause.html" title="class in org.eclipse.persistence.history">AsOfClause</A> pastTime)</CODE> |
| |
| <BR> |
| Sets all tables represented by this expression to be queried as of a past |
| time.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE>protected void</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#assignAlias(java.lang.String, org.eclipse.persistence.internal.helper.DatabaseTable)">assignAlias</A></B>(java.lang.String name, |
| org.eclipse.persistence.internal.helper.DatabaseTable tableOrExpression)</CODE> |
| |
| <BR> |
| INTERNAL: |
| Alias a particular table within this node</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> int</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#assignTableAliasesStartingAt(int)">assignTableAliasesStartingAt</A></B>(int initialValue)</CODE> |
| |
| <BR> |
| INTERNAL: |
| Assign aliases to any tables which I own.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#average()">average</A></B>()</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, This represents the aggregate function Average.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#between(byte, byte)">between</A></B>(byte leftValue, |
| byte rightValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, between two bytes</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#between(char, char)">between</A></B>(char leftChar, |
| char rightChar)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, between two chars</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#between(double, double)">between</A></B>(double leftValue, |
| double rightValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, between two doubles</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#between(org.eclipse.persistence.expressions.Expression, org.eclipse.persistence.expressions.Expression)">between</A></B>(<A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> leftExpression, |
| <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> rightExpression)</CODE> |
| |
| <BR> |
| </TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#between(float, float)">between</A></B>(float leftValue, |
| float rightValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, between two floats</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#between(int, int)">between</A></B>(int leftValue, |
| int rightValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, between two ints</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#between(long, long)">between</A></B>(long leftValue, |
| long rightValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, between two longs</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#between(java.lang.Object, java.lang.Object)">between</A></B>(java.lang.Object leftValue, |
| java.lang.Object rightValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receiver's value is between two other values.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#between(short, short)">between</A></B>(short leftValue, |
| short rightValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, between two shorts</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#caseConditionStatement(java.util.Map, java.lang.Object)">caseConditionStatement</A></B>(java.util.Map<<A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A>,java.lang.Object> caseConditions, |
| java.lang.Object defaultItem)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function Convert values returned by the query to values |
| given in the caseConditions Map.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#caseStatement(java.util.Map, java.lang.Object)">caseStatement</A></B>(java.util.Map caseItems, |
| java.lang.Object defaultItem)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function Convert values returned by the query to values |
| given in the caseItems Map.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> java.lang.Object</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#clone()">clone</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL: |
| Clone the expression maintaining clone identity in the inter-connected expression graph.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#cloneUsing(org.eclipse.persistence.expressions.Expression)">cloneUsing</A></B>(<A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> newBase)</CODE> |
| |
| <BR> |
| INTERNAL: |
| This expression is built on a different base than the one we want.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#coalesce(java.util.Collection)">coalesce</A></B>(java.util.Collection expressions)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function Return null if all arguments are null and the first non-null argument otherwise |
| The equivalent of the COALESCE SQL function |
| Example: |
| |
| Vector list = new Vector(3); |
| list.add(builder.get("firstName")); |
| list.add(builder.get("lastName")); |
| list.add(builder.get("nickname")); |
| |
| TopLink: expressionBuilder.coalesce(caseTable) |
| Java: NA |
| SQL: COALESCE(firstname, lastname, nickname) |
| </TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> int</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#computeHashCode()">computeHashCode</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL: |
| Compute a consistent hash-code for the expression.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#concat(java.lang.Object)">concat</A></B>(java.lang.Object left)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, returns the concatenation of the two string values.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#containsAllKeyWords(java.lang.String)">containsAllKeyWords</A></B>(java.lang.String spaceSeparatedKeyWords)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that performs a key word search.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#containsAnyKeyWords(java.lang.String)">containsAnyKeyWords</A></B>(java.lang.String spaceSeparatedKeyWords)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that performs a key word search.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#containsSubstring(org.eclipse.persistence.expressions.Expression)">containsSubstring</A></B>(<A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> expression)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value contains the substring.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#containsSubstring(java.lang.String)">containsSubstring</A></B>(java.lang.String theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value contains the substring.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#containsSubstringIgnoringCase(org.eclipse.persistence.expressions.Expression)">containsSubstringIgnoringCase</A></B>(<A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> expression)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value contains the substring, ignoring case.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#containsSubstringIgnoringCase(java.lang.String)">containsSubstringIgnoringCase</A></B>(java.lang.String theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value contains the substring, ignoring case.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE>protected void</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#convertNodeToUseOuterJoin()">convertNodeToUseOuterJoin</A></B>()</CODE> |
| |
| <BR> |
| </TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#convertToUseOuterJoin()">convertToUseOuterJoin</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL: |
| Modify this expression to use outer joins wherever there are |
| equality operations between two field nodes.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#copiedVersionFrom(java.util.Map)">copiedVersionFrom</A></B>(java.util.Map alreadyDone)</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#count()">count</A></B>()</CODE> |
| |
| <BR> |
| PUBLIC: |
| This represents the aggregate function Average.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#create(org.eclipse.persistence.expressions.Expression, java.lang.Object, org.eclipse.persistence.expressions.ExpressionOperator)">create</A></B>(<A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> base, |
| java.lang.Object singleArgument, |
| <A HREF="../../../../org/eclipse/persistence/expressions/ExpressionOperator.html" title="class in org.eclipse.persistence.expressions">ExpressionOperator</A> anOperator)</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#create(org.eclipse.persistence.expressions.Expression, java.util.Vector, org.eclipse.persistence.expressions.ExpressionOperator)">create</A></B>(<A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> base, |
| java.util.Vector arguments, |
| <A HREF="../../../../org/eclipse/persistence/expressions/ExpressionOperator.html" title="class in org.eclipse.persistence.expressions">ExpressionOperator</A> anOperator)</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#createWithBaseLast(org.eclipse.persistence.expressions.Expression, java.lang.Object, org.eclipse.persistence.expressions.ExpressionOperator)">createWithBaseLast</A></B>(<A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> base, |
| java.lang.Object singleArgument, |
| <A HREF="../../../../org/eclipse/persistence/expressions/ExpressionOperator.html" title="class in org.eclipse.persistence.expressions">ExpressionOperator</A> anOperator)</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#currentDate()">currentDate</A></B>()</CODE> |
| |
| <BR> |
| PUBLIC: |
| This gives access to the current date on the database through expression.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#currentDateDate()">currentDateDate</A></B>()</CODE> |
| |
| <BR> |
| PUBLIC: |
| This gives access to the current date only on the database through expression.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#currentTime()">currentTime</A></B>()</CODE> |
| |
| <BR> |
| PUBLIC: |
| This gives access to the current time only on the database through expression.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#currentTimeStamp()">currentTimeStamp</A></B>()</CODE> |
| |
| <BR> |
| PUBLIC: |
| This gives access to the current timestamp on the database through expression.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#dateDifference(java.lang.String, java.util.Date)">dateDifference</A></B>(java.lang.String datePart, |
| java.util.Date date)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, Return the difference between the queried part of a date(i.e. years, days etc.)</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#dateDifference(java.lang.String, org.eclipse.persistence.expressions.Expression)">dateDifference</A></B>(java.lang.String datePart, |
| <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> comparisonExpression)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, Return the difference between the queried part of a date(i.e. years, days etc.)</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#dateName(java.lang.String)">dateName</A></B>(java.lang.String datePart)</CODE> |
| |
| <BR> |
| PUBLIC: |
| return a string that represents the given part of a date.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#datePart(java.lang.String)">datePart</A></B>(java.lang.String datePart)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function return an integer which represents the requested |
| part of the date.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#dateToString()">dateToString</A></B>()</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, returns the date converted to the string value in the default database format.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#decode(java.util.Map, java.lang.String)">decode</A></B>(java.util.Map decodeableItems, |
| java.lang.String defaultItem)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function Convert values returned by the query to values given in the decodeableItems Map.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#descending()">descending</A></B>()</CODE> |
| |
| <BR> |
| PUBLIC: |
| This can only be used within an ordering expression.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> java.lang.String</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#descriptionOfNodeType()">descriptionOfNodeType</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL: |
| Used in debug printing of this node.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#detectExpression(java.util.Vector)">detectExpression</A></B>(java.util.Vector theObjects)</CODE> |
| |
| <BR> |
| INTERNAL: |
| Check if any element in theObjects is Expression.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#difference(java.lang.String)">difference</A></B>(java.lang.String expression)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function return a value which indicates how much difference there is |
| between two expressions.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#distinct()">distinct</A></B>()</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, This represents the distinct option inside an aggregate function.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#doesConform(java.lang.Object, org.eclipse.persistence.internal.sessions.AbstractSession, org.eclipse.persistence.internal.sessions.AbstractRecord, int)">doesConform</A></B>(java.lang.Object object, |
| org.eclipse.persistence.internal.sessions.AbstractSession session, |
| org.eclipse.persistence.internal.sessions.AbstractRecord translationRow, |
| int valueHolderPolicy)</CODE> |
| |
| <BR> |
| INTERNAL: |
| Check if the object conforms to the expression in memory.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#doesConform(java.lang.Object, org.eclipse.persistence.internal.sessions.AbstractSession, org.eclipse.persistence.internal.sessions.AbstractRecord, int, boolean)">doesConform</A></B>(java.lang.Object object, |
| org.eclipse.persistence.internal.sessions.AbstractSession session, |
| org.eclipse.persistence.internal.sessions.AbstractRecord translationRow, |
| int valueHolderPolicy, |
| boolean objectIsUnregistered)</CODE> |
| |
| <BR> |
| INTERNAL: |
| New parameter added to doesConform for feature 2612601</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#equal(boolean)">equal</A></B>(boolean theBoolean)</CODE> |
| |
| <BR> |
| </TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#equal(byte)">equal</A></B>(byte theValue)</CODE> |
| |
| <BR> |
| </TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#equal(char)">equal</A></B>(char theChar)</CODE> |
| |
| <BR> |
| </TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#equal(double)">equal</A></B>(double theValue)</CODE> |
| |
| <BR> |
| </TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#equal(org.eclipse.persistence.expressions.Expression)">equal</A></B>(<A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> theValue)</CODE> |
| |
| <BR> |
| Returns an expression that compares if the receiver's value is equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#equal(float)">equal</A></B>(float theValue)</CODE> |
| |
| <BR> |
| </TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#equal(int)">equal</A></B>(int theValue)</CODE> |
| |
| <BR> |
| </TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#equal(long)">equal</A></B>(long theValue)</CODE> |
| |
| <BR> |
| </TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#equal(java.lang.Object)">equal</A></B>(java.lang.Object theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receiver's value is equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#equal(short)">equal</A></B>(short theValue)</CODE> |
| |
| <BR> |
| </TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#equalOuterJoin(org.eclipse.persistence.expressions.Expression)">equalOuterJoin</A></B>(<A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> theValue)</CODE> |
| |
| <BR> |
| INTERNAL: |
| Return an expression representing an outer join comparison</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#equalOuterJoin(java.lang.Object)">equalOuterJoin</A></B>(java.lang.Object theValue)</CODE> |
| |
| <BR> |
| INTERNAL: |
| Return an expression representing an outer join comparison</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#equals(java.lang.Object)">equals</A></B>(java.lang.Object expression)</CODE> |
| |
| <BR> |
| INTERNAL: |
| Return if the expression is equal to the other.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#equalsIgnoreCase(org.eclipse.persistence.expressions.Expression)">equalsIgnoreCase</A></B>(<A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receiver's value is equal to the other value, ignoring case.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#equalsIgnoreCase(java.lang.String)">equalsIgnoreCase</A></B>(java.lang.String theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receiver's value is equal to the other value, ignoring case.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#exists(org.eclipse.persistence.queries.ReportQuery)">exists</A></B>(<A HREF="../../../../org/eclipse/persistence/queries/ReportQuery.html" title="class in org.eclipse.persistence.queries">ReportQuery</A> subQuery)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return a sub query expression.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#existsNode(java.lang.String)">existsNode</A></B>(java.lang.String xpath)</CODE> |
| |
| <BR> |
| PUBLIC: |
| XMLType Function, gets the number of nodes returned by the given xpath expression |
| returns 0 if there are none</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#extract(java.lang.String)">extract</A></B>(java.lang.String xpath)</CODE> |
| |
| <BR> |
| PUBLIC: |
| XMLType Function, extracts a secton of XML from a larget XML document</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#extractPrimaryKeyValues(boolean, org.eclipse.persistence.descriptors.ClassDescriptor, org.eclipse.persistence.internal.sessions.AbstractRecord, org.eclipse.persistence.internal.sessions.AbstractRecord)">extractPrimaryKeyValues</A></B>(boolean requireExactMatch, |
| <A HREF="../../../../org/eclipse/persistence/descriptors/ClassDescriptor.html" title="class in org.eclipse.persistence.descriptors">ClassDescriptor</A> descriptor, |
| org.eclipse.persistence.internal.sessions.AbstractRecord primaryKeyRow, |
| org.eclipse.persistence.internal.sessions.AbstractRecord translationRow)</CODE> |
| |
| <BR> |
| INTERNAL: |
| Extract the primary key from the expression into the row.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#extractValue(java.lang.String)">extractValue</A></B>(java.lang.String xpath)</CODE> |
| |
| <BR> |
| PUBLIC: |
| XMLType Function, extracts a value from an XMLType field</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE>static <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#from(java.lang.Object, org.eclipse.persistence.expressions.Expression)">from</A></B>(java.lang.Object value, |
| <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> base)</CODE> |
| |
| <BR> |
| INTERNAL: |
| Create an expression node.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE>static <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#fromConstant(java.lang.Object, org.eclipse.persistence.expressions.Expression)">fromConstant</A></B>(java.lang.Object value, |
| <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> base)</CODE> |
| |
| <BR> |
| INTERNAL: |
| Create an expression node.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE>static <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#fromLiteral(java.lang.String, org.eclipse.persistence.expressions.Expression)">fromLiteral</A></B>(java.lang.String value, |
| <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> base)</CODE> |
| |
| <BR> |
| INTERNAL: |
| Create an expression node.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#get(java.lang.String)">get</A></B>(java.lang.String attributeName)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that wraps the attribute or query key name.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#get(java.lang.String, java.util.Vector)">get</A></B>(java.lang.String attributeName, |
| java.util.Vector arguments)</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getAllowingNull(java.lang.String)">getAllowingNull</A></B>(java.lang.String attributeName)</CODE> |
| |
| <BR> |
| ADVANCED: |
| Return an expression that wraps the attribute or query key name.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getAllowingNull(java.lang.String, java.util.Vector)">getAllowingNull</A></B>(java.lang.String attributeName, |
| java.util.Vector arguments)</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/history/AsOfClause.html" title="class in org.eclipse.persistence.history">AsOfClause</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getAsOfClause()">getAsOfClause</A></B>()</CODE> |
| |
| <BR> |
| Answers the past time the expression is explicitly as of.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/history/AsOfClause.html" title="class in org.eclipse.persistence.history">AsOfClause</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getAsOfClauseRecursively()">getAsOfClauseRecursively</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL: |
| For Flashback: If this expression is not already as of some timestamp |
| gets the clause from the base expression.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE>abstract <A HREF="../../../../org/eclipse/persistence/expressions/ExpressionBuilder.html" title="class in org.eclipse.persistence.expressions">ExpressionBuilder</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getBuilder()">getBuilder</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL: |
| Return the expression builder which is the ultimate base of this expression, or |
| null if there isn't one (shouldn't happen if we start from a root)</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> org.eclipse.persistence.internal.helper.DatabaseField</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getClonedField()">getClonedField</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL: |
| If there are any fields associated with this expression, return them</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getField(org.eclipse.persistence.internal.helper.DatabaseField)">getField</A></B>(org.eclipse.persistence.internal.helper.DatabaseField field)</CODE> |
| |
| <BR> |
| ADVANCED: Return an expression representing a field in a data-level query.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getField(java.lang.String)">getField</A></B>(java.lang.String fieldName)</CODE> |
| |
| <BR> |
| ADVANCED: |
| Return an expression representing a field in a data-level query.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> java.util.Vector</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getFields()">getFields</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> java.lang.Object</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getFieldValue(java.lang.Object, org.eclipse.persistence.internal.sessions.AbstractSession)">getFieldValue</A></B>(java.lang.Object objectValue, |
| org.eclipse.persistence.internal.sessions.AbstractSession session)</CODE> |
| |
| <BR> |
| INTERNAL: |
| Transform the object-level value into a database-level value</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getFunction(int)">getFunction</A></B>(int selector)</CODE> |
| |
| <BR> |
| ADVANCED: |
| This can be used for accessing user defined functions.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getFunction(int, java.util.Vector)">getFunction</A></B>(int selector, |
| java.util.Vector arguments)</CODE> |
| |
| <BR> |
| ADVANCED: |
| This can be used for accessing user defined functions that have arguments.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getFunction(java.lang.String)">getFunction</A></B>(java.lang.String functionName)</CODE> |
| |
| <BR> |
| ADVANCED: |
| Return a user defined function accepting the argument.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getFunction(java.lang.String, java.lang.Object)">getFunction</A></B>(java.lang.String functionName, |
| java.lang.Object argument)</CODE> |
| |
| <BR> |
| ADVANCED: |
| Return a user defined function accepting the argument.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getFunctionWithArguments(java.lang.String, java.util.Vector)">getFunctionWithArguments</A></B>(java.lang.String functionName, |
| java.util.Vector arguments)</CODE> |
| |
| <BR> |
| ADVANCED: |
| Return a user defined function accepting all of the arguments.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> java.lang.String</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getName()">getName</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getNumberVal()">getNumberVal</A></B>()</CODE> |
| |
| <BR> |
| PUBLIC: |
| XMLType Function - gets a number value from an XMLType</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/ExpressionOperator.html" title="class in org.eclipse.persistence.expressions">ExpressionOperator</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getOperator()">getOperator</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL: |
| Most expression have operators, so this is just a convenience method.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/ExpressionOperator.html" title="class in org.eclipse.persistence.expressions">ExpressionOperator</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getOperator(int)">getOperator</A></B>(int selector)</CODE> |
| |
| <BR> |
| INTERNAL: |
| Create a new expression tree with the named operator.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> java.util.Vector</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getOwnedTables()">getOwnedTables</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL: |
| Return the tables that this node owns for purposes of table aliasing.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getParameter(org.eclipse.persistence.internal.helper.DatabaseField)">getParameter</A></B>(org.eclipse.persistence.internal.helper.DatabaseField field)</CODE> |
| |
| <BR> |
| ADVANCED: |
| Return an expression representing a parameter with the given name.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getParameter(java.lang.String)">getParameter</A></B>(java.lang.String parameterName)</CODE> |
| |
| <BR> |
| ADVANCED: |
| Return an expression representing a parameter with the given name.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getParameter(java.lang.String, java.lang.Object)">getParameter</A></B>(java.lang.String parameterName, |
| java.lang.Object type)</CODE> |
| |
| <BR> |
| INTERNAL: |
| Return an expression representing a parameter with the given name and type</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> org.eclipse.persistence.internal.sessions.AbstractSession</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getSession()">getSession</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getStringVal()">getStringVal</A></B>()</CODE> |
| |
| <BR> |
| PUBLIC: |
| XMLType Function - gets a string value from an XMLType</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getTable(org.eclipse.persistence.internal.helper.DatabaseTable)">getTable</A></B>(org.eclipse.persistence.internal.helper.DatabaseTable table)</CODE> |
| |
| <BR> |
| ADVANCED: Return an expression representing a table in a data-level query.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getTable(java.lang.String)">getTable</A></B>(java.lang.String tableName)</CODE> |
| |
| <BR> |
| ADVANCED: Return an expression representing a table in a data-level query.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> org.eclipse.persistence.internal.expressions.TableAliasLookup</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#getTableAliases()">getTableAliases</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL: |
| Return the aliases used.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#greaterThan(boolean)">greaterThan</A></B>(boolean theBoolean)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#greaterThan(byte)">greaterThan</A></B>(byte theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#greaterThan(char)">greaterThan</A></B>(char theChar)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#greaterThan(double)">greaterThan</A></B>(double theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#greaterThan(org.eclipse.persistence.expressions.Expression)">greaterThan</A></B>(<A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> theValue)</CODE> |
| |
| <BR> |
| </TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#greaterThan(float)">greaterThan</A></B>(float theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#greaterThan(int)">greaterThan</A></B>(int theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#greaterThan(long)">greaterThan</A></B>(long theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#greaterThan(java.lang.Object)">greaterThan</A></B>(java.lang.Object theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receiver's value is greater than the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#greaterThan(short)">greaterThan</A></B>(short theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#greaterThanEqual(boolean)">greaterThanEqual</A></B>(boolean theBoolean)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is greater and equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#greaterThanEqual(byte)">greaterThanEqual</A></B>(byte theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is greater and equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#greaterThanEqual(char)">greaterThanEqual</A></B>(char theChar)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is greater and equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#greaterThanEqual(double)">greaterThanEqual</A></B>(double theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is greater and equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#greaterThanEqual(org.eclipse.persistence.expressions.Expression)">greaterThanEqual</A></B>(<A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is greater and equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#greaterThanEqual(float)">greaterThanEqual</A></B>(float theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is greater and equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#greaterThanEqual(int)">greaterThanEqual</A></B>(int theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is greater and equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#greaterThanEqual(long)">greaterThanEqual</A></B>(long theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is greater and equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#greaterThanEqual(java.lang.Object)">greaterThanEqual</A></B>(java.lang.Object theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is greater and equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#greaterThanEqual(short)">greaterThanEqual</A></B>(short theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is greater and equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#hasAsOfClause()">hasAsOfClause</A></B>()</CODE> |
| |
| <BR> |
| ADVANCED: |
| Answers true if <code>this</code> is to be queried as of a past time.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#hasBeenAliased()">hasBeenAliased</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL: |
| Answers if the database tables associated with this expression have been |
| aliased.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> int</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#hashCode()">hashCode</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL: |
| Return a consistent hash-code for the expression.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#hexToRaw()">hexToRaw</A></B>()</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, returns binary array value for the hex string.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#ifNull(java.lang.Object)">ifNull</A></B>(java.lang.Object nullValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function return a specific value if item returned from the |
| query is null.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#in(boolean[])">in</A></B>(boolean[] theBooleans)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#in(byte[])">in</A></B>(byte[] theBytes)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#in(char[])">in</A></B>(char[] theChars)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#in(java.util.Collection)">in</A></B>(java.util.Collection theObjects)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#in(double[])">in</A></B>(double[] theDoubles)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#in(org.eclipse.persistence.expressions.Expression)">in</A></B>(<A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> arguments)</CODE> |
| |
| <BR> |
| </TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#in(float[])">in</A></B>(float[] theFloats)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#in(int[])">in</A></B>(int[] theInts)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#in(long[])">in</A></B>(long[] theLongs)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#in(java.lang.Object[])">in</A></B>(java.lang.Object[] theObjects)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#in(org.eclipse.persistence.queries.ReportQuery)">in</A></B>(<A HREF="../../../../org/eclipse/persistence/queries/ReportQuery.html" title="class in org.eclipse.persistence.queries">ReportQuery</A> subQuery)</CODE> |
| |
| <BR> |
| </TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#in(short[])">in</A></B>(short[] theShorts)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that checks if the receivers value is contained in the collection.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#index()">index</A></B>()</CODE> |
| |
| <BR> |
| </TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#indexOf(java.lang.Object)">indexOf</A></B>(java.lang.Object substring)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, returns the integer index of the substring within the source string.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#isClassTypeExpression()">isClassTypeExpression</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#isCompoundExpression()">isCompoundExpression</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#isConstantExpression()">isConstantExpression</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#isDataExpression()">isDataExpression</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#isEmpty(java.lang.String)">isEmpty</A></B>(java.lang.String attributeName)</CODE> |
| |
| <BR> |
| PUBLIC: A logical expression for the collection <code>attributeName</code> |
| being empty.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#isExpressionBuilder()">isExpressionBuilder</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#isFieldExpression()">isFieldExpression</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#isFragment()">isFragment</A></B>()</CODE> |
| |
| <BR> |
| PUBLIC: |
| XMLType Function - evaluates to 0 if the xml is a well formed document and 1 if the document |
| is a fragment</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#isFunctionExpression()">isFunctionExpression</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#isLiteralExpression()">isLiteralExpression</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#isLogicalExpression()">isLogicalExpression</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#isMapEntryExpression()">isMapEntryExpression</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#isNull()">isNull</A></B>()</CODE> |
| |
| <BR> |
| PUBLIC: |
| Compare to null.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#isObjectExpression()">isObjectExpression</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#isParameterExpression()">isParameterExpression</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#isQueryKeyExpression()">isQueryKeyExpression</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#isRelationExpression()">isRelationExpression</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#isTableExpression()">isTableExpression</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL:</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> boolean</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#isValueExpression()">isValueExpression</A></B>()</CODE> |
| |
| <BR> |
| INTERNAL: |
| Subclasses implement (isParameterExpression() || isConstantExpression())</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> void</CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#iterateOn(org.eclipse.persistence.internal.expressions.ExpressionIterator)">iterateOn</A></B>(org.eclipse.persistence.internal.expressions.ExpressionIterator iterator)</CODE> |
| |
| <BR> |
| INTERNAL: |
| For iterating using an inner class</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#lastDay()">lastDay</A></B>()</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, returns the date with the last date in the months of this source date.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#leftPad(int, java.lang.Object)">leftPad</A></B>(int size, |
| java.lang.Object substring)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, returns the string padded with the substring to the size.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#leftPad(java.lang.Object, java.lang.Object)">leftPad</A></B>(java.lang.Object size, |
| java.lang.Object substring)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, returns the string padded with the substring to the size.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#leftTrim()">leftTrim</A></B>()</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, returns the string left trimmed for white space.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#leftTrim(java.lang.Object)">leftTrim</A></B>(java.lang.Object substring)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, returns the string with the substring trimed from the left.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#length()">length</A></B>()</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, returns the size of the string.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#lessThan(boolean)">lessThan</A></B>(boolean theBoolean)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is less than the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#lessThan(byte)">lessThan</A></B>(byte theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is less than the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#lessThan(char)">lessThan</A></B>(char theChar)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is less than the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#lessThan(double)">lessThan</A></B>(double theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is less than the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#lessThan(org.eclipse.persistence.expressions.Expression)">lessThan</A></B>(<A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> theValue)</CODE> |
| |
| <BR> |
| </TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#lessThan(float)">lessThan</A></B>(float theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is less than the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#lessThan(int)">lessThan</A></B>(int theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is less than the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#lessThan(long)">lessThan</A></B>(long theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is less than the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#lessThan(java.lang.Object)">lessThan</A></B>(java.lang.Object theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is less than the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#lessThan(short)">lessThan</A></B>(short theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is less than the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#lessThanEqual(boolean)">lessThanEqual</A></B>(boolean theBoolean)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is less than and equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#lessThanEqual(byte)">lessThanEqual</A></B>(byte theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is less than and equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#lessThanEqual(char)">lessThanEqual</A></B>(char theChar)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is less than and equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#lessThanEqual(double)">lessThanEqual</A></B>(double theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is less than and equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#lessThanEqual(org.eclipse.persistence.expressions.Expression)">lessThanEqual</A></B>(<A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is less than and equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#lessThanEqual(float)">lessThanEqual</A></B>(float theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is less than and equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#lessThanEqual(int)">lessThanEqual</A></B>(int theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is less than and equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#lessThanEqual(long)">lessThanEqual</A></B>(long theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is less than and equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#lessThanEqual(java.lang.Object)">lessThanEqual</A></B>(java.lang.Object theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is less than and equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#lessThanEqual(short)">lessThanEqual</A></B>(short theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is less than and equal to the other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#like(org.eclipse.persistence.expressions.Expression)">like</A></B>(<A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> argument)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is like other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#like(org.eclipse.persistence.expressions.Expression, org.eclipse.persistence.expressions.Expression)">like</A></B>(<A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> value, |
| <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> escapeSequence)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is like other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#like(java.lang.String)">like</A></B>(java.lang.String value)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is like other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#like(java.lang.String, java.lang.String)">like</A></B>(java.lang.String value, |
| java.lang.String escapeSequence)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is like other value.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#likeIgnoreCase(org.eclipse.persistence.expressions.Expression)">likeIgnoreCase</A></B>(<A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A> theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is like the other value, ignoring case.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#likeIgnoreCase(java.lang.String)">likeIgnoreCase</A></B>(java.lang.String theValue)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return an expression that compares if the receivers value is like the other value, ignoring case.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#literal(java.lang.String)">literal</A></B>(java.lang.String literal)</CODE> |
| |
| <BR> |
| ADVANCED: |
| Return an expression on the literal.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#locate(java.lang.Object)">locate</A></B>(java.lang.Object str)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, returns the position of <code>str</code> in <code>this</code> |
| Example: |
| |
| TopLink: employee.get("firstName").locate("ob") |
| Java: employee.getFirstName().indexOf("ob") + 1 |
| SQL: LOCATE('ob', t0.F_NAME) |
| |
| |
| Note that while in String.locate(str) -1 is returned if not found, and the |
| index starting at 0 if found, in SQL it is 0 if not found, and the index |
| starting at 1 if found.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#locate(java.lang.Object, java.lang.Object)">locate</A></B>(java.lang.Object str, |
| java.lang.Object fromIndex)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, returns the position of <code>str</code> in <code>this</code>, |
| starting the search at <code>fromIndex</code>.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#locate(java.lang.String, int)">locate</A></B>(java.lang.String str, |
| int fromIndex)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, returns the position of <code>str</code> in <code>this</code>, |
| starting the search at <code>fromIndex</code>.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#mapEntry()">mapEntry</A></B>()</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return a Map.Entry containing the key and the value from a mapping that maps to a java.util.Map |
| This expression can only be used as a return value in a ReportQuery and cannot be used as part of |
| the WHERE clause in any query |
| |
| TopLink: eb.get("mapAttribute").mapEntry()</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#mapKey()">mapKey</A></B>()</CODE> |
| |
| <BR> |
| PUBLIC: |
| Return the key from a mapping that maps to a java.util.Map |
| This expression can be used either in as a return value in a ReportQuery or in the WHERE clause in a query |
| |
| TopLink: eb.get("mapAttribute").mapKey()</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#maximum()">maximum</A></B>()</CODE> |
| |
| <BR> |
| PUBLIC: |
| This represents the aggregate function Maximum.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#minimum()">minimum</A></B>()</CODE> |
| |
| <BR> |
| PUBLIC: |
| This represents the aggregate function Minimum.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#monthsBetween(java.lang.Object)">monthsBetween</A></B>(java.lang.Object otherDate)</CODE> |
| |
| <BR> |
| PUBLIC: |
| Function, returns the decimal number of months between the two dates.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> |
| <CODE> <A HREF="../../../../org/eclipse/persistence/expressions/Expression.html" title="class in org.eclipse.persistence.expressions">Expression</A></CODE></FONT></TD> |
| <TD><CODE><B><A HREF="../../../../org/eclipse/persistence/expressions/Expression.html#newTime(java.lang.String, java.lang.String)">newTime</A></B>(java.lang.String timeZoneFrom, |
| java.lang.String timeZoneTo)</CODE> |
| |
| <BR> |
| PUBLIC: |
| funcation return a date converted to a new timezone.</TD> |
| </TR> |
| <TR BGCOLOR="white" CLASS="TableRowColor"> |
| <TD ALIGN="right" VALIGN="top" |