| Package | Description |
|---|---|
| org.sakaiproject.entitybroker.entityprovider.search |
| Modifier and Type | Method and Description |
|---|---|
Order[] |
Search.getOrders()
Orders define the order of the returned results of a search, You can add as many orders as you like and they will
be applied in the array order
|
| Modifier and Type | Method and Description |
|---|---|
void |
Search.addOrder(Order order) |
void |
Search.setOrders(Order[] orders) |
| Constructor and Description |
|---|
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
|
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
|
Copyright © 2003–2022 Sakai Project. All rights reserved.