Skip navigation links
A C D F I L M N Q S T 

A

accumulator() - Method in class com.olights.jqueryable.QueryableCollector
 
any() - Method in interface com.olights.jqueryable.IQueryable
Check if this IQueryable contains any elements.
any() - Method in class com.olights.jqueryable.QueryableList
 
anyMatch(Predicate<? super Type>) - Method in interface com.olights.jqueryable.IQueryable
Returns whether any elements of this IQueryable match the provided predicate.
anyMatch(Predicate<? super Type>) - Method in class com.olights.jqueryable.QueryableList
 

C

characteristics() - Method in class com.olights.jqueryable.QueryableCollector
 
com.olights.jqueryable - package com.olights.jqueryable
 
combiner() - Method in class com.olights.jqueryable.QueryableCollector
 
contains(Type) - Method in interface com.olights.jqueryable.IContainer
 
count() - Method in interface com.olights.jqueryable.IQueryable
Return the number of elements in this IQueryable
count(Predicate<Type>) - Method in interface com.olights.jqueryable.IQueryable
Return number of elements in this queryable that passes the given predicate.
count() - Method in class com.olights.jqueryable.QueryableList
 
count(Predicate<Type>) - Method in class com.olights.jqueryable.QueryableList
 

D

distinct() - Method in interface com.olights.jqueryable.IQueryable
Returns an queryable consisting of the distinct elements (according to Object.equals(Object)) of this queryable.
distinct() - Method in class com.olights.jqueryable.QueryableList
 

F

filter(Predicate<Type>) - Method in interface com.olights.jqueryable.IQueryable
Returns an IQueryable consisting of the elements of this IQueryable that match the given predicate.
filter(Predicate<Type>) - Method in class com.olights.jqueryable.QueryableList
 
findFirst() - Method in interface com.olights.jqueryable.IQueryable
Returns the first item in this IQueryable if exists
findFirst(Predicate<Type>) - Method in interface com.olights.jqueryable.IQueryable
Returns the first item in this IQueryable if exists
findFirst() - Method in class com.olights.jqueryable.QueryableList
 
findFirst(Predicate<Type>) - Method in class com.olights.jqueryable.QueryableList
 
finisher() - Method in class com.olights.jqueryable.QueryableCollector
 
first() - Method in interface com.olights.jqueryable.IQueryable
Returns the first item in this IQueryable
first(Predicate<Type>) - Method in interface com.olights.jqueryable.IQueryable
Returns the first item in this IQueryable
first() - Method in class com.olights.jqueryable.QueryableList
 
first(Predicate<Type>) - Method in class com.olights.jqueryable.QueryableList
 

I

IContainer<Type> - Interface in com.olights.jqueryable
Container is an @Iterable which can also be queried for a contained item.
IQueryable<Type> - Interface in com.olights.jqueryable
IQueryable combines the functionality of a @Stream and an @IContainer.
IQueryableList<Type> - Interface in com.olights.jqueryable
 
IQueryableMap<K,V> - Interface in com.olights.jqueryable
 

L

last() - Method in interface com.olights.jqueryable.IQueryable
Returns the last item in this IQueryable
last() - Method in class com.olights.jqueryable.QueryableList
 

M

map(Function<Type, Out>) - Method in interface com.olights.jqueryable.IQueryable
Returns a IQueryable consisting of the results of applying the given function to the elements of this IQueryable This is an intermediate operation.
map(Function<Type, Out>) - Method in class com.olights.jqueryable.QueryableList
 
mapMany(Function<Type, Iterable<Out>>) - Method in interface com.olights.jqueryable.IQueryable
Returns a IQueryable consisting of the results of applying the given function to the elements of this IQueryable This is an intermediate operation.
mapMany(Function<Type, Iterable<Out>>) - Method in class com.olights.jqueryable.QueryableList
 

N

newQueryableList() - Static method in class com.olights.jqueryable.Queryable
Create an empty QueryableList
newQueryableList(Collection<Type>) - Static method in class com.olights.jqueryable.Queryable
Create a QueryableList which contains the elements from the given collection
newQueryableList(Iterable<Type>) - Static method in class com.olights.jqueryable.Queryable
Create a QueryableList which contains the elements from the given iterable
newQueryableList(Type...) - Static method in class com.olights.jqueryable.Queryable
Create a QueryableList which contains the elements which are passed as arguments.
newQueryableMap() - Static method in class com.olights.jqueryable.Queryable
Create an empty @QueryableMap

Q

Queryable - Class in com.olights.jqueryable
This class provides static methods to create new Queryable collections.
Queryable() - Constructor for class com.olights.jqueryable.Queryable
 
QueryableCollector<T> - Class in com.olights.jqueryable
This class is used to transform a @Stream of elements to a QueryableList Usage: stream.collect(QueryableCollector.toQueryable());
QueryableCollector() - Constructor for class com.olights.jqueryable.QueryableCollector
 
QueryableList<Type> - Class in com.olights.jqueryable
This class implements the @IQueryable interface.
QueryableList() - Constructor for class com.olights.jqueryable.QueryableList
Create an empty QueryableList
QueryableList(Collection<Type>) - Constructor for class com.olights.jqueryable.QueryableList
Create a QueryableList which contains the elements from the given collection
QueryableList(Iterable<Type>) - Constructor for class com.olights.jqueryable.QueryableList
Create a QueryableList which contains the elements from the given iterable
QueryableList(Type...) - Constructor for class com.olights.jqueryable.QueryableList
Create a QueryableList which contains the elements which are passed as arguments.
QueryableMap<K,V> - Class in com.olights.jqueryable
 
QueryableMap() - Constructor for class com.olights.jqueryable.QueryableMap
 
queryKeys() - Method in interface com.olights.jqueryable.IQueryableMap
 
queryKeys() - Method in class com.olights.jqueryable.QueryableMap
 
queryValues() - Method in interface com.olights.jqueryable.IQueryableMap
 
queryValues() - Method in class com.olights.jqueryable.QueryableMap
 

S

sorted() - Method in interface com.olights.jqueryable.IQueryable
Returns a queryalbe consisting of the elements of this queryalbe, sorted according to natural order.
sorted(Comparator<? super Type>) - Method in interface com.olights.jqueryable.IQueryable
Returns a queryalbe consisting of the elements of this queryalbe, sorted according to the provided Comparator.
sorted() - Method in class com.olights.jqueryable.QueryableList
 
sorted(Comparator<? super Type>) - Method in class com.olights.jqueryable.QueryableList
 
supplier() - Method in class com.olights.jqueryable.QueryableCollector
 

T

toArray(IntFunction<Type[]>) - Method in interface com.olights.jqueryable.IQueryable
Returns an array containing the elements of this IQueryable.
toArray(IntFunction<Type[]>) - Method in class com.olights.jqueryable.QueryableList
 
toQueryable() - Static method in class com.olights.jqueryable.QueryableCollector
Return a new QueryableCollector
A C D F I L M N Q S T 
Skip navigation links

Copyright © 2015. All rights reserved.