JavaScript is disabled on your browser.
Overview
Package
Class
Use
Tree
Deprecated
Index
Help
Prev
Next
Frames
No Frames
All Classes
$
A
C
D
E
F
I
L
M
P
R
S
T
$
$
- Class in
com.github.bicoco
This library is a collection of auxiliary methods for accessing, searching and otherwise manipulating
List
objects.
$()
- Constructor for class com.github.bicoco.
$
A
at(List<T>, int)
- Static method in class com.github.bicoco.
$
Return the element at index.
at(int)
- Method in class com.github.bicoco.collections.
ListHelper
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.
$
Remove null values in list
compact$()
- Method in class com.github.bicoco.collections.
ListHelper
Remove null values of 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.
$
Return size of list or 0 to empty list.
count(List<T>, ConditionFunction<T>)
- Static method in class com.github.bicoco.
$
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.
D
drop(List<T>, int)
- Static method in class com.github.bicoco.
$
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.
E
each(List<T>, EachFunction<T>)
- Static method in class com.github.bicoco.
$
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.
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.
$
Identical to
List.get(int)
fetch(List<T>, int, T)
- Static method in class com.github.bicoco.
$
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.
first(List<T>)
- Static method in class com.github.bicoco.
$
Get the first element of list.
first()
- Method in class com.github.bicoco.collections.
ListHelper
Get the first element of list.
I
isEmpty(List<T>)
- Static method in class com.github.bicoco.
$
Check if list is empty
isEmpty()
- Method in class com.github.bicoco.collections.
ListHelper
Check if list is empty
isNotEmpty(List<T>)
- Static method in class com.github.bicoco.
$
Check if list is not empty
isNotEmpty()
- Method in class com.github.bicoco.collections.
ListHelper
Check if list is not empty
L
last(List<T>)
- Static method in class com.github.bicoco.
$
Get the last element of list.
last()
- Method in class com.github.bicoco.collections.
ListHelper
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.
$
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.
$
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.
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.
$
Adding multiple elements to the end of list.
push(List<T>, T)
- Static method in class com.github.bicoco.
$
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.
R
reject(List<T>, ConditionFunction<T>)
- Static method in class com.github.bicoco.
$
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.
$
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.
S
select(List<T>, ConditionFunction<T>)
- Static method in class com.github.bicoco.
$
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.
$
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.
size(List<T>)
- Static method in class com.github.bicoco.
$
Identical to List#size()
size()
- Method in class com.github.bicoco.collections.
ListHelper
Identical to List#size()
T
take(List<T>, int)
- Static method in class com.github.bicoco.
$
Get the first n elements of list
take(int)
- Method in class com.github.bicoco.collections.
ListHelper
Get the first n elements of list.
transform(List<T>, TransformFunction<T, R>)
- Static method in class com.github.bicoco.
$
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.
TransformFunction
<
T
,
R
> - Interface in
com.github.bicoco.collections.functions
Created by anderson on 01/03/14.
$
A
C
D
E
F
I
L
M
P
R
S
T
Overview
Package
Class
Use
Tree
Deprecated
Index
Help
Prev
Next
Frames
No Frames
All Classes
Copyright © 2014. All Rights Reserved.