|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use IL | |
---|---|
org.ckkloverdos.collection | |
org.ckkloverdos.util |
Uses of IL in org.ckkloverdos.collection |
---|
Classes in org.ckkloverdos.collection that implement IL | |
---|---|
class |
L
Basic implementation of IL . |
Methods in org.ckkloverdos.collection that return IL | |
---|---|
IL |
L.add(java.lang.Object o)
Adds the element to the list. |
IL |
IL.add(java.lang.Object o)
Adds the element to the list. |
IL |
L.addAll(java.util.Collection c)
Adds all the elements of the collection to this list. |
IL |
IL.addAll(java.util.Collection c)
Adds all the elements of the collection to this list. |
IL |
L.addAll(IL l)
Adds all the elements of the given list to this one. |
IL |
IL.addAll(IL l)
Adds all the elements of the given list to this one. |
IL |
L.addAll(java.lang.Object[] array)
Adds all the elements of the array to this list. |
IL |
IL.addAll(java.lang.Object[] array)
Adds all the elements of the array to this list. |
IL |
L.chopPrefix(java.lang.String prefix)
Chops the prefix from all elements, which are assumed to be strings. |
IL |
IL.chopPrefix(java.lang.String prefix)
Chops the prefix from all elements, which are assumed to be strings. |
IL |
L.chopPrefixRE(java.lang.String prefix)
Chops the regular expression prefix from all elements, which are assumed to be strings. |
IL |
IL.chopPrefixRE(java.lang.String prefix)
Chops the regular expression prefix from all elements, which are assumed to be strings. |
IL |
L.chopSuffix(java.lang.String suffix)
Chops the suffix from all elements, which are assumed to be strings. |
IL |
IL.chopSuffix(java.lang.String suffix)
Chops the suffix from all elements, which are assumed to be strings. |
IL |
L.chopSuffixRE(java.lang.String suffix)
Chops the regula expression suffix from all elements, which are assumed to be strings. |
IL |
IL.chopSuffixRE(java.lang.String suffix)
Chops the regula expression suffix from all elements, which are assumed to be strings. |
IL |
L.clear(java.lang.Object o)
Completely removes the element from the list. |
IL |
IL.clear(java.lang.Object o)
Completely removes the element from the list. |
IL |
L.copy()
Returns a copy of this list. |
IL |
IL.copy()
Returns a copy of this list. |
IL |
L.filter(IFilter filter)
Returns a new list with all the elements that are accepted by filter . |
IL |
IL.filter(IFilter filter)
Returns a new list with all the elements that are accepted by filter . |
IL |
L.filter(IFilter filter,
java.lang.Object hints)
Returns a new list with all the elements that are accepted by filter . |
IL |
IL.filter(IFilter filter,
java.lang.Object hints)
Returns a new list with all the elements that are accepted by filter . |
IL |
L.filterEndsWith(java.lang.String s)
Filters all elements that end with s , assuming that elements are strings. |
IL |
IL.filterEndsWith(java.lang.String s)
Filters all elements that end with s , assuming that elements are strings. |
IL |
L.filterEndsWithRE(java.lang.String re)
|
IL |
IL.filterEndsWithRE(java.lang.String re)
|
IL |
L.filterEndsWithRE(java.lang.String re,
int modifiers)
|
IL |
IL.filterEndsWithRE(java.lang.String re,
int modifiers)
|
IL |
L.filterFindRE(java.lang.String re)
Uses Matcher.find() . |
IL |
IL.filterFindRE(java.lang.String re)
Uses Matcher.find() . |
IL |
L.filterFindRE(java.lang.String re,
int modifiers)
Uses Matcher.find() . |
IL |
IL.filterFindRE(java.lang.String re,
int modifiers)
Uses Matcher.find() . |
static IL |
CollectionUtil.filterKeys(java.util.Map map,
IFilter filter,
java.lang.Object hints)
|
IL |
L.filterMap(IFilterFunction ff)
Combines filtering and mapping in one place. |
IL |
IL.filterMap(IFilterFunction ff)
Combines filtering and mapping in one place. |
IL |
L.filterMap(IFilterFunction ff,
java.lang.Object hints)
Combines filtering and mapping in one place. |
IL |
IL.filterMap(IFilterFunction ff,
java.lang.Object hints)
Combines filtering and mapping in one place. |
IL |
L.filterMatchesRE(java.lang.String re)
Uses Matcher.matches() . |
IL |
IL.filterMatchesRE(java.lang.String re)
Uses Matcher.matches() . |
IL |
L.filterMatchesRE(java.lang.String re,
int modifiers)
Uses Matcher.matches() . |
IL |
IL.filterMatchesRE(java.lang.String re,
int modifiers)
Uses Matcher.matches() . |
IL |
L.filterNotEndsWith(java.lang.String s)
Filters all elements that end with s , assuming that elements are strings. |
IL |
IL.filterNotEndsWith(java.lang.String s)
Filters all elements that end with s , assuming that elements are strings. |
IL |
L.filterNotEndsWithRE(java.lang.String re)
|
IL |
IL.filterNotEndsWithRE(java.lang.String re)
|
IL |
L.filterNotEndsWithRE(java.lang.String re,
int modifiers)
|
IL |
IL.filterNotEndsWithRE(java.lang.String re,
int modifiers)
|
IL |
L.filterNotFindRE(java.lang.String re)
Uses Matcher.find() . |
IL |
IL.filterNotFindRE(java.lang.String re)
Uses Matcher.find() . |
IL |
L.filterNotFindRE(java.lang.String re,
int modifiers)
Uses Matcher.find() . |
IL |
IL.filterNotFindRE(java.lang.String re,
int modifiers)
Uses Matcher.find() . |
IL |
L.filterNotMatchesRE(java.lang.String re)
Uses Matcher.matches() . |
IL |
IL.filterNotMatchesRE(java.lang.String re)
Uses Matcher.matches() . |
IL |
L.filterNotMatchesRE(java.lang.String re,
int modifiers)
Uses Matcher.matches() . |
IL |
IL.filterNotMatchesRE(java.lang.String re,
int modifiers)
Uses Matcher.matches() . |
IL |
L.filterNotStartsWith(java.lang.String s)
Filters all elements that do not start with s , assuming that elements are strings. |
IL |
IL.filterNotStartsWith(java.lang.String s)
Filters all elements that do not start with s , assuming that elements are strings. |
IL |
L.filterNotStartsWithRE(java.lang.String re)
|
IL |
IL.filterNotStartsWithRE(java.lang.String re)
|
IL |
L.filterNotStartsWithRE(java.lang.String re,
int modifiers)
|
IL |
IL.filterNotStartsWithRE(java.lang.String re,
int modifiers)
|
IL |
L.filterStartsWith(java.lang.String s)
Filters all elements that start with s , assuming that elements are strings. |
IL |
IL.filterStartsWith(java.lang.String s)
Filters all elements that start with s , assuming that elements are strings. |
IL |
L.filterStartsWithRE(java.lang.String re)
|
IL |
IL.filterStartsWithRE(java.lang.String re)
|
IL |
L.filterStartsWithRE(java.lang.String re,
int modifiers)
|
IL |
IL.filterStartsWithRE(java.lang.String re,
int modifiers)
|
IL |
L.intersect(IL other)
Returns a new list containg the elements of this list that also belong to the other list. |
IL |
IL.intersect(IL other)
Returns a new list containg the elements of this list that also belong to the other list. |
IL |
L.map(IFunction function)
Returns a new list containing all the elements of this list, mapped by function . |
IL |
IL.map(IFunction function)
Returns a new list containing all the elements of this list, mapped by function . |
IL |
L.map(IFunction function,
java.lang.Object hints)
Returns a new list containing all the elements of this list, mapped by function . |
IL |
IL.map(IFunction function,
java.lang.Object hints)
Returns a new list containing all the elements of this list, mapped by function . |
IL |
L.minus(IL other)
Returns a new list containg the elements of this list that do not belong to the other list. |
IL |
IL.minus(IL other)
Returns a new list containg the elements of this list that do not belong to the other list. |
IL |
L.remove(java.lang.Object o)
Removes the element from the list (only once). |
IL |
IL.remove(java.lang.Object o)
Removes the element from the list (only once). |
IL |
L.selectProperty(java.lang.String propertyName)
Returns a new list with the JavaBean properties of the given name
for each element. |
IL |
IL.selectProperty(java.lang.String name)
Returns a new list with the JavaBean properties of the given name
for each element. |
IL |
L.setFrom(CollectionProxy proxy)
Sets the elements of this list from those of the collection proxy . |
IL |
IL.setFrom(CollectionProxy proxy)
Sets the elements of this list from those of the collection proxy . |
IL |
L.sort()
Sorts the elements of the list. |
IL |
IL.sort()
Sorts the elements of the list. |
IL |
L.sort(java.util.Comparator c)
Sorts the elements of the list, using the given Comparator . |
IL |
IL.sort(java.util.Comparator c)
Sorts the elements of the list, using the given Comparator . |
IL |
L.tail()
Returns the list constructed from this one if we remove the L.head() . |
IL |
IL.tail()
Returns the list constructed from this one if we remove the head() . |
IL |
L.take(int n)
Returns the first n elements of this list, n starting from one. |
IL |
IL.take(int n)
Returns the first n elements of this list, n starting from one. |
IL |
L.union(IL other)
Returns a new list containg the elements of this list along with the elements of other . |
IL |
IL.union(IL other)
Returns a new list containg the elements of this list along with the elements of other . |
IL |
L.unique()
Returns a set containing the unique elements of this list. |
IL |
IL.unique()
Returns a set containing the unique elements of this list. |
IL |
L.zip(IL other)
Implements list zipping. |
IL |
IL.zip(IL other)
Implements list zipping. |
Methods in org.ckkloverdos.collection with parameters of type IL | |
---|---|
IL |
L.addAll(IL l)
Adds all the elements of the given list to this one. |
IL |
IL.addAll(IL l)
Adds all the elements of the given list to this one. |
CollectionProxy |
CollectionProxy.addAll(IL l)
|
static java.util.Map |
CollectionUtil.filterMap(java.util.Map map,
IL keys)
Contructs a new map keeping only the keys of the provided list. |
IL |
L.intersect(IL other)
Returns a new list containg the elements of this list that also belong to the other list. |
IL |
IL.intersect(IL other)
Returns a new list containg the elements of this list that also belong to the other list. |
IL |
L.minus(IL other)
Returns a new list containg the elements of this list that do not belong to the other list. |
IL |
IL.minus(IL other)
Returns a new list containg the elements of this list that do not belong to the other list. |
static java.util.Collection |
CollectionUtil.newCollectionLike(IL il)
|
static CollectionProxy |
CollectionProxy.newLike(IL l)
|
static java.util.List |
CollectionUtil.newListLike(IL il)
|
static java.util.Set |
CollectionUtil.newSetLike(IL il)
|
IL |
L.union(IL other)
Returns a new list containg the elements of this list along with the elements of other . |
IL |
IL.union(IL other)
Returns a new list containg the elements of this list along with the elements of other . |
IL |
L.zip(IL other)
Implements list zipping. |
IL |
IL.zip(IL other)
Implements list zipping. |
Uses of IL in org.ckkloverdos.util |
---|
Methods in org.ckkloverdos.util with parameters of type IL | |
---|---|
static boolean |
Util.emptySafe(IL list)
Checks if the provided list is empty. |
static void |
Assert.notEmpty(IL list)
|
static void |
Assert.notEmpty(IL list,
java.lang.String msg)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |