public class Queryable extends Object
| Constructor and Description |
|---|
Queryable() |
| Modifier and Type | Method and Description |
|---|---|
static <Type> QueryableList<Type> |
newQueryableList()
Create an empty QueryableList
|
static <Type> QueryableList<Type> |
newQueryableList(Collection<Type> collection)
Create a QueryableList which contains the elements from the given collection
|
static <Type> QueryableList<Type> |
newQueryableList(Iterable<Type> iterable)
Create a QueryableList which contains the elements from the given iterable
|
static <Type> QueryableList<Type> |
newQueryableList(Type... items)
Create a QueryableList which contains the elements which are passed as arguments.
|
static <K,V> QueryableMap<K,V> |
newQueryableMap()
Create an empty @QueryableMap
|
public static <Type> QueryableList<Type> newQueryableList()
Type - the type of the contained itempublic static <Type> QueryableList<Type> newQueryableList(Collection<Type> collection)
Type - the type of the contained itemcollection - collection to provide the initial elements of this QueryableListpublic static <Type> QueryableList<Type> newQueryableList(Iterable<Type> iterable)
Type - the type of the contained itemiterable - collection to provide the initial elements of this QueryableList@SafeVarargs public static <Type> QueryableList<Type> newQueryableList(Type... items)
Type - the type of the contained itemitems - the elements that will contained in the QueryableListpublic static <K,V> QueryableMap<K,V> newQueryableMap()
K - the type of the map keyV - the type of the contained itemCopyright © 2015. All rights reserved.