T
- type of entitypublic class SimpleProjectableAdapter<T> extends java.lang.Object implements SimpleQuery<SimpleProjectableAdapter<T>>, SimpleProjectable<T>
SimpleQuery
and
SimpleProjectable
interfacesConstructor and Description |
---|
SimpleProjectableAdapter(Q query,
Expression<T> projection) |
SimpleProjectableAdapter(SimpleQuery<?> query,
Projectable projectable,
Expression<T> projection) |
Modifier and Type | Method and Description |
---|---|
long |
count()
Get the count of matched elements
|
SimpleProjectableAdapter<T> |
distinct()
Set the Query to return distinct results
|
boolean |
exists() |
com.mysema.commons.lang.CloseableIterator<T> |
iterate()
Get the projection as a typed closeable Iterator
|
SimpleProjectableAdapter<T> |
limit(long limit)
Set the limit / max results for the query results
|
java.util.List<T> |
list()
Get the projection as a typed List
|
SearchResults<T> |
listResults()
Get the projection in
SearchResults form |
boolean |
notExists() |
SimpleProjectableAdapter<T> |
offset(long offset)
Set the offset for the query results
|
SimpleProjectableAdapter<T> |
orderBy(OrderSpecifier<?>... o)
Add order expressions
|
SimpleProjectableAdapter<T> |
restrict(QueryModifiers modifiers)
Set both limit and offset of the query results
|
<P> SimpleProjectableAdapter<T> |
set(ParamExpression<P> param,
P value)
Set the given parameter to the given value
|
T |
singleResult()
Get the projection as a single result or null if no result is found
|
java.lang.String |
toString() |
T |
uniqueResult()
Get the projection as a unique result or null if no result is found
|
SimpleProjectableAdapter<T> |
where(Predicate... e)
Adds the given filter conditions
|
public SimpleProjectableAdapter(Q query, Expression<T> projection)
public SimpleProjectableAdapter(SimpleQuery<?> query, Projectable projectable, Expression<T> projection)
public boolean exists()
exists
in interface SimpleProjectable<T>
public boolean notExists()
notExists
in interface SimpleProjectable<T>
public long count()
SimpleProjectable
count
in interface SimpleProjectable<T>
public SimpleProjectableAdapter<T> distinct()
SimpleQuery
distinct
in interface SimpleQuery<SimpleProjectableAdapter<T>>
public SimpleProjectableAdapter<T> limit(long limit)
SimpleQuery
limit
in interface SimpleQuery<SimpleProjectableAdapter<T>>
public com.mysema.commons.lang.CloseableIterator<T> iterate()
SimpleProjectable
iterate
in interface SimpleProjectable<T>
public java.util.List<T> list()
SimpleProjectable
list
in interface SimpleProjectable<T>
public SearchResults<T> listResults()
SimpleProjectable
SearchResults
formlistResults
in interface SimpleProjectable<T>
public SimpleProjectableAdapter<T> offset(long offset)
SimpleQuery
offset
in interface SimpleQuery<SimpleProjectableAdapter<T>>
public SimpleProjectableAdapter<T> orderBy(OrderSpecifier<?>... o)
SimpleQuery
orderBy
in interface SimpleQuery<SimpleProjectableAdapter<T>>
public SimpleProjectableAdapter<T> restrict(QueryModifiers modifiers)
SimpleQuery
restrict
in interface SimpleQuery<SimpleProjectableAdapter<T>>
public <P> SimpleProjectableAdapter<T> set(ParamExpression<P> param, P value)
SimpleQuery
set
in interface SimpleQuery<SimpleProjectableAdapter<T>>
public java.lang.String toString()
toString
in class java.lang.Object
public T singleResult()
SimpleProjectable
for multiple results only the first one is returned
singleResult
in interface SimpleProjectable<T>
public T uniqueResult()
SimpleProjectable
uniqueResult
in interface SimpleProjectable<T>
public SimpleProjectableAdapter<T> where(Predicate... e)
FilteredClause
Skips null arguments
where
in interface FilteredClause<SimpleProjectableAdapter<T>>
e
- filter conditions to be addedCopyright © 2007-2013 Mysema Ltd. All Rights Reserved.