Search(String[] properties,
Object[] values,
int[] comparisons,
Order[] orders) |
Do a search of multiple properties which are compared with corresponding values,
sort the returned results in ascending order defined by specific sortProperties,
all arrays should be the same length
|
Search(String[] properties,
Object[] values,
int[] comparisons,
Order[] orders,
long firstResult,
long maxResults) |
Do a search of multiple properties which are compared with corresponding values,
sort the returned results in ascending order defined by specific sortProperties,
all arrays should be the same length
|
Search(Restriction[] restrictions,
Order order) |
Defines a search which defines restrictions and return ordering,
defaults to AND restriction comparisons and returning all results
|
Search(Restriction[] restrictions,
Order[] orders) |
Defines a search which defines restrictions and return ordering,
defaults to AND restriction comparisons and returning all results
|
Search(Restriction[] restrictions,
Order[] orders,
long start,
long limit) |
Defines a search which defines restrictions and return ordering and limits the returns,
defaults to AND restriction comparisons
|
Search(Restriction[] restrictions,
Order[] orders,
long start,
long limit,
boolean conjunction) |
Defines a search which defines restrictions and return ordering and limits the returns,
also specifies the types of restriction comparisons (AND or OR)
|
Search(Restriction[] restrictions,
Order order,
long start,
long limit) |
Defines a search which defines restrictions and return ordering and limits the returns,
defaults to AND restriction comparisons
|
Search(Restriction[] restrictions,
Order order,
long start,
long limit,
boolean conjunction) |
Defines a search which defines restrictions and return ordering and limits the returns,
also specifies the types of restriction comparisons (AND or OR)
|
Search(Restriction restriction,
Order order) |
Defines a search which defines only a single restriction and returns all items,
defaults to AND restriction comparisons
|
Search(Restriction restriction,
Order order,
long start,
long limit) |
Defines a search which defines only a single restriction and limits the returns,
defaults to AND restriction comparisons
|