| |
|
| java.lang.Object org.jpox.store.expression.ScalarExpression org.jpox.store.expression.CollectionLiteral
CollectionLiteral | public class CollectionLiteral extends ScalarExpression (Code) | | An SQL expression that will test if a column of a table falls within the
given Collection of values. This is used for Querys where a transient
Collection is passed in as a parameter.
version: $Revision: 1.11 $ |
CollectionLiteral | public CollectionLiteral(QueryExpression qs, JavaTypeMapping mapping, Collection value)(Code) | | Constructor.
Parameters: qs - The QueryStatement the CollectionLiteral will be used in. Parameters: value - The transient Collection that is the value. Parameters: mapping - The mapping to the Collection |
containsMethod | public BooleanExpression containsMethod(ScalarExpression expr)(Code) | | Method to check the containing of an element.
Return the BooleanExpression that results from
CollectionLiteral.contains(SQLExpression).
Parameters: expr - The SQLExpression that is checked for membership in theCollection The BooleanExpression that results from CollectionLiteral.contains(SQLExpression). |
isEmptyMethod | public BooleanExpression isEmptyMethod()(Code) | | Method to check for emptiness of the collection.
The BooleanExpression. |
|
|
|