| Modifier and Type | Interface and Description |
|---|---|
interface |
IQueryableList<Type> |
| Modifier and Type | Class and Description |
|---|---|
class |
QueryableList<Type>
This class implements the @IQueryable interface.
|
| Modifier and Type | Method and Description |
|---|---|
IQueryable<Type> |
QueryableList.distinct() |
IQueryable<Type> |
IQueryable.distinct()
Returns an queryable consisting of the distinct elements (according to Object.equals(Object)) of this queryable.
|
IQueryable<Type> |
IQueryable.filter(java.util.function.Predicate<Type> predicate)
Returns an IQueryable consisting of the elements of this IQueryable that match the given predicate.
|
<Out> IQueryable<Out> |
IQueryable.map(java.util.function.Function<Type,Out> mapper)
Returns a IQueryable consisting of the results of applying the given function to the elements of this IQueryable
This is an intermediate operation.
|
<Out> IQueryable<Out> |
IQueryable.mapMany(java.util.function.Function<Type,Iterable<Out>> mapper)
Returns a IQueryable consisting of the results of applying the given function to the elements of this IQueryable
This is an intermediate operation.
|
IQueryable<K> |
QueryableMap.queryKeys() |
IQueryable<K> |
IQueryableMap.queryKeys() |
IQueryable<V> |
QueryableMap.queryValues() |
IQueryable<V> |
IQueryableMap.queryValues() |
IQueryable<Type> |
QueryableList.sorted() |
IQueryable<Type> |
IQueryable.sorted()
Returns a queryalbe consisting of the elements of this queryalbe, sorted according to natural order.
|
IQueryable<Type> |
QueryableList.sorted(Comparator<? super Type> comparator) |
IQueryable<Type> |
IQueryable.sorted(Comparator<? super Type> comparator)
Returns a queryalbe consisting of the elements of this queryalbe, sorted according to the provided Comparator.
|
Copyright © 2015. All rights reserved.