static CommonsArrayList<?> |
CollectionHelper.getAsList(Object aObj) |
|
static <ELEMENTTYPE> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.getConcatenatedList(ELEMENTTYPE[] aCont1,
Collection<? extends ELEMENTTYPE> aCont2) |
|
static <ELEMENTTYPE> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.getConcatenatedList(Collection<? extends ELEMENTTYPE> aCont1,
ELEMENTTYPE... aCont2) |
|
static <ELEMENTTYPE> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.getConcatenatedList(Collection<? extends ELEMENTTYPE> aCollection1,
Collection<? extends ELEMENTTYPE> aCollection2) |
|
static <ELEMENTTYPE> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.getReverseList(Collection<? extends ELEMENTTYPE> aCollection) |
|
static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.getSorted(IIterableIterator<? extends ELEMENTTYPE> aIter) |
Convert the given iterator to a sorted list.
|
static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.getSorted(IIterableIterator<? extends ELEMENTTYPE> aIter,
Comparator<? super ELEMENTTYPE> aComparator) |
Convert the given iterator to a sorted list.
|
static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.getSorted(ELEMENTTYPE... aCont) |
Convert the given iterable object to a sorted list.
|
static <ELEMENTTYPE> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.getSorted(ELEMENTTYPE[] aCont,
Comparator<? super ELEMENTTYPE> aComparator) |
Convert the given iterable object to a sorted list.
|
static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.getSorted(Iterable<? extends ELEMENTTYPE> aCont) |
Convert the given iterable object to a sorted list.
|
static <ELEMENTTYPE> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.getSorted(Iterable<? extends ELEMENTTYPE> aCont,
Comparator<? super ELEMENTTYPE> aComparator) |
Convert the given iterable object to a sorted list.
|
static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.getSorted(Collection<? extends ELEMENTTYPE> aCont) |
Convert the given collection object to a sorted list.
|
static <ELEMENTTYPE> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.getSorted(Collection<? extends ELEMENTTYPE> aCont,
Comparator<? super ELEMENTTYPE> aComparator) |
Convert the given collection object to a sorted list.
|
static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.getSorted(Iterator<? extends ELEMENTTYPE> aIter) |
Convert the given iterator to a sorted list.
|
static <ELEMENTTYPE> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.getSorted(Iterator<? extends ELEMENTTYPE> aIter,
Comparator<? super ELEMENTTYPE> aComparator) |
Convert the given iterator to a sorted list.
|
static <ELEMENTTYPE> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.getSubList(List<ELEMENTTYPE> aCont,
int nStartIndex,
int nSectionLength) |
Gets a sublist excerpt of the passed list.
|
static <ELEMENTTYPE> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.newList() |
|
static <ELEMENTTYPE> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.newList(int nInitialCapacity) |
|
static <ELEMENTTYPE> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.newList(IIterableIterator<? extends ELEMENTTYPE> aIter) |
|
static <ELEMENTTYPE> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.newList(ELEMENTTYPE aValue) |
|
static <ELEMENTTYPE> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.newList(ELEMENTTYPE... aValues) |
|
static <ELEMENTTYPE> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.newList(Iterable<? extends ELEMENTTYPE> aIter) |
|
static <ELEMENTTYPE> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.newList(Collection<? extends ELEMENTTYPE> aCont) |
|
static <ELEMENTTYPE> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.newList(Collection<? extends ELEMENTTYPE> aCollection,
Predicate<? super ELEMENTTYPE> aFilter) |
|
static <ELEMENTTYPE> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.newList(Enumeration<? extends ELEMENTTYPE> aEnum) |
|
static <ELEMENTTYPE> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.newList(Iterator<? extends ELEMENTTYPE> aIter) |
|
static <ELEMENTTYPE,DSTTYPE> CommonsArrayList<DSTTYPE> |
CollectionHelper.newListMapped(Iterable<? extends ELEMENTTYPE> aIter,
Function<? super ELEMENTTYPE,? extends DSTTYPE> aMapper) |
|
static <ELEMENTTYPE,DSTTYPE> CommonsArrayList<DSTTYPE> |
CollectionHelper.newListMapped(Iterable<? extends ELEMENTTYPE> aCollection,
Predicate<? super ELEMENTTYPE> aFilter,
Function<? super ELEMENTTYPE,? extends DSTTYPE> aMapper) |
|
static <SRCTYPE,DSTTYPE> CommonsArrayList<DSTTYPE> |
CollectionHelper.newListMapped(Collection<? extends SRCTYPE> aCollection,
Function<? super SRCTYPE,? extends DSTTYPE> aMapper) |
|
static <SRCTYPE,DSTTYPE> CommonsArrayList<DSTTYPE> |
CollectionHelper.newListMapped(SRCTYPE[] aValues,
Function<? super SRCTYPE,? extends DSTTYPE> aMapper) |
|
static <ELEMENTTYPE> CommonsArrayList<ELEMENTTYPE> |
CollectionHelper.newListPrefilled(ELEMENTTYPE aValue,
int nElements) |
|
static CommonsArrayList<?> |
CollectionHelper.newObjectListFromArray(Object aValue,
Class<?> aComponentType) |
|
static CommonsArrayList<Boolean> |
PrimitiveCollectionHelper.newPrimitiveList(boolean... aValues) |
|
static CommonsArrayList<Byte> |
PrimitiveCollectionHelper.newPrimitiveList(byte... aValues) |
|
static CommonsArrayList<Character> |
PrimitiveCollectionHelper.newPrimitiveList(char... aValues) |
|
static CommonsArrayList<Double> |
PrimitiveCollectionHelper.newPrimitiveList(double... aValues) |
|
static CommonsArrayList<Float> |
PrimitiveCollectionHelper.newPrimitiveList(float... aValues) |
|
static CommonsArrayList<Integer> |
PrimitiveCollectionHelper.newPrimitiveList(int... aValues) |
|
static CommonsArrayList<Long> |
PrimitiveCollectionHelper.newPrimitiveList(long... aValues) |
|
static CommonsArrayList<Short> |
PrimitiveCollectionHelper.newPrimitiveList(short... aValues) |
|