Package | Description |
---|---|
org.datanucleus.api.jdo.query |
Package providing DataNucleus' implementation of a typesafe query mechanism, primarily JDOQL.
|
org.datanucleus.query.typesafe |
Package providing a typesafe query mechanism, primarily for JDO.
|
Modifier and Type | Class and Description |
---|---|
class |
BooleanExpressionImpl<T>
Implementation of a BooleanExpression
|
Modifier and Type | Method and Description |
---|---|
BooleanExpression |
BooleanExpressionImpl.and(BooleanExpression expr) |
TypesafeQuery<T> |
JDOTypesafeQuery.filter(BooleanExpression expr) |
TypesafeSubquery |
JDOTypesafeSubquery.filter(BooleanExpression expr) |
BooleanExpression |
BooleanExpressionImpl.or(BooleanExpression expr) |
Modifier and Type | Method and Description |
---|---|
BooleanExpression |
BooleanExpression.and(BooleanExpression expr)
Method to return the AND of this expression and the other expression.
|
BooleanExpression |
CollectionExpression.contains(E elem)
Method returning whether the specified element is contained in this collection.
|
BooleanExpression |
CollectionExpression.contains(Expression expr)
Method returning whether the specified elementexpression is contained in this collection.
|
BooleanExpression |
MapExpression.containsEntry(Expression expr)
Method returning whether the specified entry expression is contained in this map.
|
BooleanExpression |
MapExpression.containsEntry(Map.Entry<K,V> entry)
Method returning whether the specified entry is contained in this map.
|
BooleanExpression |
MapExpression.containsKey(Expression expr)
Method returning whether the specified key expression is contained in this map.
|
BooleanExpression |
MapExpression.containsKey(K key)
Method returning whether the specified key is contained in this map.
|
BooleanExpression |
MapExpression.containsValue(Expression expr)
Method returning whether the specified value expression is contained in this map.
|
BooleanExpression |
MapExpression.containsValue(V value)
Method returning whether the specified value is contained in this map.
|
BooleanExpression |
StringExpression.endsWith(String str)
Method returning an expression for whether this string expression ends with the passed string expression.
|
BooleanExpression |
StringExpression.endsWith(StringExpression expr)
Method returning an expression for whether this string expression ends with the passed string expression.
|
BooleanExpression |
Expression.eq(Expression expr)
Method returning whether this expression equals the other expression.
|
BooleanExpression |
Expression.eq(T t)
Method returning whether this expression equals the literal.
|
BooleanExpression |
StringExpression.equalsIgnoreCase(String str)
Method returning an expression for whether this string expression is equal to (ignoring case) the
passed string.
|
BooleanExpression |
StringExpression.equalsIgnoreCase(StringExpression expr)
Method returning an expression for whether this string expression is equal to (ignoring case) the
passed string expression.
|
BooleanExpression |
ComparableExpression.gt(ComparableExpression expr)
Method returning whether this expression is greater than the other expression.
|
BooleanExpression |
ComparableExpression.gt(T t)
Method returning whether this expression is greater than the literal.
|
BooleanExpression |
ComparableExpression.gteq(ComparableExpression expr)
Method returning whether this expression is greater than or equal the other expression.
|
BooleanExpression |
ComparableExpression.gteq(T t)
Method returning whether this expression is greater than or equal the literal.
|
BooleanExpression |
Expression.instanceOf(Class cls)
Return an expression for whether this expression is an instanceof the supplied class.
|
BooleanExpression |
CollectionExpression.isEmpty()
Method returning whether the collection is empty.
|
BooleanExpression |
MapExpression.isEmpty()
Method returning whether the map is empty.
|
BooleanExpression |
ComparableExpression.lt(ComparableExpression expr)
Method returning whether this expression is less than the other expression.
|
BooleanExpression |
ComparableExpression.lt(T t)
Method returning whether this expression is less than the literal.
|
BooleanExpression |
ComparableExpression.lteq(ComparableExpression expr)
Method returning whether this expression is less than or equal the other expression.
|
BooleanExpression |
ComparableExpression.lteq(T t)
Method returning whether this expression is less than or equal the literal.
|
BooleanExpression |
Expression.ne(Expression expr)
Method returning whether this expression doesn't equal the other expression.
|
BooleanExpression |
Expression.ne(T t)
Method returning whether this expression doesn't equal the literal.
|
BooleanExpression |
BooleanExpression.not()
Method to negate this expression.
|
BooleanExpression |
BooleanExpression.or(BooleanExpression expr)
Method to return the OR of this expression and the other expression.
|
BooleanExpression |
StringExpression.startsWith(String str)
Method returning an expression for whether this string expression starts with the passed string.
|
BooleanExpression |
StringExpression.startsWith(StringExpression expr)
Method returning an expression for whether this string expression starts with the passed string expression.
|
Modifier and Type | Method and Description |
---|---|
BooleanExpression |
BooleanExpression.and(BooleanExpression expr)
Method to return the AND of this expression and the other expression.
|
TypesafeQuery<T> |
TypesafeQuery.filter(BooleanExpression expr)
Method to set the filter of the query.
|
TypesafeSubquery |
TypesafeSubquery.filter(BooleanExpression expr)
Method to set the filter of the query.
|
BooleanExpression |
BooleanExpression.or(BooleanExpression expr)
Method to return the OR of this expression and the other expression.
|
Copyright © 2023. All rights reserved.