JavaScript is disabled on your browser.
Skip navigation links
Overview
Package
Class
Use
Tree
Deprecated
Index
Help
Prev
Next
Frames
No Frames
All Classes
A
C
D
E
F
H
I
L
M
P
R
S
T
_
A
all(List<T>, ConditionFunction<T>)
- Static method in class com.github.bicoco.
_
Deprecated.
Returns true if all of the values in the list pass the predicate truth test
all(ConditionFunction<T>)
- Method in class com.github.bicoco.collections.
ListHelper
Returns true if all of the values in the list pass the predicate truth test
all(List<T>, ConditionFunction<T>)
- Static method in class com.github.bicoco.
Helpers
Returns true if all of the values in the list pass the predicate truth test
any(List<T>, ConditionFunction<T>)
- Static method in class com.github.bicoco.
_
Deprecated.
Returns true if any of the values in the list pass the predicate truth test
any(ConditionFunction<T>)
- Method in class com.github.bicoco.collections.
ListHelper
Returns true if any of the values in the list pass the predicate truth test
any(List<T>, ConditionFunction<T>)
- Static method in class com.github.bicoco.
Helpers
Returns true if any of the values in the list pass the predicate truth test
at(List<T>, int)
- Static method in class com.github.bicoco.
_
Deprecated.
Return the element at index.
at(int)
- Method in class com.github.bicoco.collections.
ListHelper
Return the element at index.
at(List<T>, int)
- Static method in class com.github.bicoco.
Helpers
Return the element at index.
C
com.github.bicoco
- package com.github.bicoco
com.github.bicoco.collections
- package com.github.bicoco.collections
com.github.bicoco.collections.functions
- package com.github.bicoco.collections.functions
compact$(List<T>)
- Static method in class com.github.bicoco.
_
Deprecated.
Remove null values in list
compact$()
- Method in class com.github.bicoco.collections.
ListHelper
Remove null values of list.
compact$(List<T>)
- Static method in class com.github.bicoco.
Helpers
Remove null values in list
condition(T)
- Method in interface com.github.bicoco.collections.functions.
ConditionFunction
ConditionFunction
<
T
> - Interface in
com.github.bicoco.collections.functions
Created by anderson on 01/03/14.
count(List<T>)
- Static method in class com.github.bicoco.
_
Deprecated.
Return size of list or 0 to empty list.
count(List<T>, ConditionFunction<T>)
- Static method in class com.github.bicoco.
_
Deprecated.
Return size of list where function returns true, or 0 to empty list.
count()
- Method in class com.github.bicoco.collections.
ListHelper
Return size of list or 0 to empty list.
count(ConditionFunction<T>)
- Method in class com.github.bicoco.collections.
ListHelper
Return size of list where function returns true, or 0 to empty list.
count(List<T>)
- Static method in class com.github.bicoco.
Helpers
Return size of list or 0 to empty list.
count(List<T>, ConditionFunction<T>)
- Static method in class com.github.bicoco.
Helpers
Return size of list where function returns true, or 0 to empty list.
D
drop(List<T>, int)
- Static method in class com.github.bicoco.
_
Deprecated.
Get the elements of list excluding the first n elements
drop(int)
- Method in class com.github.bicoco.collections.
ListHelper
Get the elements of list excluding the first n elements.
drop(List<T>, int)
- Static method in class com.github.bicoco.
Helpers
Get the elements of list excluding the first n elements
E
each(List<T>, EachFunction<T>)
- Static method in class com.github.bicoco.
_
Deprecated.
Execute a custom action for each element of list.
each(T)
- Method in interface com.github.bicoco.collections.functions.
EachFunction
each(EachFunction<T>)
- Method in class com.github.bicoco.collections.
ListHelper
Execute a custom action for each element of list.
each(List<T>, EachFunction<T>)
- Static method in class com.github.bicoco.
Helpers
Execute a custom action for each element of list.
EachFunction
<
T
> - Interface in
com.github.bicoco.collections.functions
Created by anderson on 01/03/14.
F
fetch(List<T>, int)
- Static method in class com.github.bicoco.
_
Deprecated.
Identical to
List.get(int)
fetch(List<T>, int, T)
- Static method in class com.github.bicoco.
_
Deprecated.
Null-safe, get element at index, with default value.
fetch(int)
- Method in class com.github.bicoco.collections.
ListHelper
Identical to
List.get(int)
.
fetch(int, T)
- Method in class com.github.bicoco.collections.
ListHelper
Null-safe, defining the default value.
fetch(List<T>, int)
- Static method in class com.github.bicoco.
Helpers
Identical to
List.get(int)
fetch(List<T>, int, T)
- Static method in class com.github.bicoco.
Helpers
Null-safe, get element at index, with default value.
first(List<T>)
- Static method in class com.github.bicoco.
_
Deprecated.
Get the first element of list.
first()
- Method in class com.github.bicoco.collections.
ListHelper
Get the first element of list.
first(List<T>)
- Static method in class com.github.bicoco.
Helpers
Get the first element of list.
H
Helpers
- Class in
com.github.bicoco
This library is a collection of auxiliary methods for accessing, searching and otherwise manipulating
List
objects.
Helpers()
- Constructor for class com.github.bicoco.
Helpers
I
isEmpty(List<T>)
- Static method in class com.github.bicoco.
_
Deprecated.
Check if list is empty
isEmpty()
- Method in class com.github.bicoco.collections.
ListHelper
Check if list is empty
isEmpty(List<T>)
- Static method in class com.github.bicoco.
Helpers
Check if list is empty
isNotEmpty(List<T>)
- Static method in class com.github.bicoco.
_
Deprecated.
Check if list is not empty
isNotEmpty()
- Method in class com.github.bicoco.collections.
ListHelper
Check if list is not empty
isNotEmpty(List<T>)
- Static method in class com.github.bicoco.
Helpers
Check if list is not empty
L
last(List<T>)
- Static method in class com.github.bicoco.
_
Deprecated.
Get the last element of list.
last()
- Method in class com.github.bicoco.collections.
ListHelper
Get the last element of list.
last(List<T>)
- Static method in class com.github.bicoco.
Helpers
Get the last element of list.
ListHelper
<
T
> - Class in
com.github.bicoco.collections
Helper methods to List Java Interface
ListHelper(List<T>)
- Constructor for class com.github.bicoco.collections.
ListHelper
Default constructor.
M
map(List<T>, MapFunction<T>)
- Static method in class com.github.bicoco.
_
Deprecated.
Return a new list of same type element, applying new value for each element.
map(T)
- Method in interface com.github.bicoco.collections.functions.
MapFunction
map(MapFunction<T>)
- Method in class com.github.bicoco.collections.
ListHelper
Return a new list of same type element, applying new value for each element.
map(List<T>, MapFunction<T>)
- Static method in class com.github.bicoco.
Helpers
Return a new list of same type element, applying new value for each element.
map$(List<T>, MapFunction<T>)
- Static method in class com.github.bicoco.
_
Deprecated.
Modifing list applying new value for each element.
map$(MapFunction<T>)
- Method in class com.github.bicoco.collections.
ListHelper
Modifing list applying new value for each element.
map$(List<T>, MapFunction<T>)
- Static method in class com.github.bicoco.
Helpers
Modifing list applying new value for each element.
MapFunction
<
T
> - Interface in
com.github.bicoco.collections.functions
Created by anderson on 01/03/14.
P
push(List<T>, T...)
- Static method in class com.github.bicoco.
_
Deprecated.
Adding multiple elements to the end of list.
push(List<T>, T)
- Static method in class com.github.bicoco.
_
Deprecated.
Adding element to the end of list.
push(T...)
- Method in class com.github.bicoco.collections.
ListHelper
Adding multiple elements to the end of list.
push(T)
- Method in class com.github.bicoco.collections.
ListHelper
Adding element to the end of list.
push(List<T>, T...)
- Static method in class com.github.bicoco.
Helpers
Adding multiple elements to the end of list.
push(List<T>, T)
- Static method in class com.github.bicoco.
Helpers
Adding element to the end of list.
R
reduce(List<T>, R, ReduceFunction<T, R>)
- Static method in class com.github.bicoco.
_
Deprecated.
Transform a list on a single value
reduce(R, T)
- Method in interface com.github.bicoco.collections.functions.
ReduceFunction
reduce(R, ReduceFunction<T, R>)
- Method in class com.github.bicoco.collections.
ListHelper
Transform a list on a single value
reduce(List<T>, R, ReduceFunction<T, R>)
- Static method in class com.github.bicoco.
Helpers
Transform a list on a single value
ReduceFunction
<
T
,
R
> - Interface in
com.github.bicoco.collections.functions
reject(List<T>, ConditionFunction<T>)
- Static method in class com.github.bicoco.
_
Deprecated.
Select all elements that condition returns false.
reject(ConditionFunction<T>)
- Method in class com.github.bicoco.collections.
ListHelper
Select all elements that condition returns false.
reject(List<T>, ConditionFunction<T>)
- Static method in class com.github.bicoco.
Helpers
Select all elements that condition returns false.
reject$(List<T>, ConditionFunction<T>)
- Static method in class com.github.bicoco.
_
Deprecated.
Select all elements that condition returns false.
reject$(ConditionFunction<T>)
- Method in class com.github.bicoco.collections.
ListHelper
Select all elements that condition returns false.
reject$(List<T>, ConditionFunction<T>)
- Static method in class com.github.bicoco.
Helpers
Select all elements that condition returns false.
S
select(List<T>, ConditionFunction<T>)
- Static method in class com.github.bicoco.
_
Deprecated.
Select all elements that condition returns true.
select(ConditionFunction<T>)
- Method in class com.github.bicoco.collections.
ListHelper
Select all elements that condition returns true.
select(List<T>, ConditionFunction<T>)
- Static method in class com.github.bicoco.
Helpers
Select all elements that condition returns true.
select$(List<T>, ConditionFunction<T>)
- Static method in class com.github.bicoco.
_
Deprecated.
Select all elements that condition returns true.
select$(ConditionFunction<T>)
- Method in class com.github.bicoco.collections.
ListHelper
Select all elements that condition returns true.
select$(List<T>, ConditionFunction<T>)
- Static method in class com.github.bicoco.
Helpers
Select all elements that condition returns true.
size(List<T>)
- Static method in class com.github.bicoco.
_
Deprecated.
Identical to List#size()
size()
- Method in class com.github.bicoco.collections.
ListHelper
Identical to List#size()
size(List<T>)
- Static method in class com.github.bicoco.
Helpers
Identical to List#size()
T
take(List<T>, int)
- Static method in class com.github.bicoco.
_
Deprecated.
Get the first n elements of list
take(int)
- Method in class com.github.bicoco.collections.
ListHelper
Get the first n elements of list.
take(List<T>, int)
- Static method in class com.github.bicoco.
Helpers
Get the first n elements of list
transform(List<T>, TransformFunction<T, R>)
- Static method in class com.github.bicoco.
_
Deprecated.
Return a new list of another type element, applying a function for each element.
transform(T)
- Method in interface com.github.bicoco.collections.functions.
TransformFunction
transform(TransformFunction<T, R>)
- Method in class com.github.bicoco.collections.
ListHelper
Return a new list of another type element, applying a function for each element.
transform(List<T>, TransformFunction<T, R>)
- Static method in class com.github.bicoco.
Helpers
Return a new list of another type element, applying a function for each element.
TransformFunction
<
T
,
R
> - Interface in
com.github.bicoco.collections.functions
Created by anderson on 01/03/14.
_
_
- Class in
com.github.bicoco
Deprecated.
This class was deprecated because the '_' character is a identifier in the Java 9
_()
- Constructor for class com.github.bicoco.
_
Deprecated.
A
C
D
E
F
H
I
L
M
P
R
S
T
_
Skip navigation links
Overview
Package
Class
Use
Tree
Deprecated
Index
Help
Prev
Next
Frames
No Frames
All Classes
Copyright © 2015. All rights reserved.