Uses of Class
com.helger.commons.collection.impl.CommonsArrayList
Packages that use CommonsArrayList
Package
Description
-
Uses of CommonsArrayList in com.helger.commons.collection
Subclasses of CommonsArrayList in com.helger.commons.collectionModifier and TypeClassDescriptionclassNonBlockingStack<ELEMENTTYPE>A version of a stack that does not useVectorbut anCommonsArrayListas the underlying data structure as opposed toStack.Methods in com.helger.commons.collection that return CommonsArrayListModifier and TypeMethodDescriptionstatic CommonsArrayList<?> Get the passed object as aCommonsArrayListobject.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> 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> 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> 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) Compared toCollections.list(Enumeration)this method is more flexible in Generics parameter.static <ELEMENTTYPE>
CommonsArrayList<ELEMENTTYPE> 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) -
Uses of CommonsArrayList in com.helger.commons.collection.impl
Methods in com.helger.commons.collection.impl that return CommonsArrayListModifier and TypeMethodDescriptionstatic <ELEMENTTYPE>
CommonsArrayList<ELEMENTTYPE> CommonsArrayList.createFiltered(ELEMENTTYPE[] aValues, Predicate<? super ELEMENTTYPE> aFilter) static <ELEMENTTYPE>
CommonsArrayList<ELEMENTTYPE> CommonsArrayList.createFiltered(Iterable<? extends ELEMENTTYPE> aValues, Predicate<? super ELEMENTTYPE> aFilter) static <SRCTYPE,ELEMENTTYPE>
CommonsArrayList<ELEMENTTYPE> CommonsArrayList.createFiltered(Iterable<? extends SRCTYPE> aValues, Function<? super SRCTYPE, ? extends ELEMENTTYPE> aMapper, Predicate<? super ELEMENTTYPE> aFilter) Create a new array list that contains a subset of the provided iterable.static <SRCTYPE,ELEMENTTYPE>
CommonsArrayList<ELEMENTTYPE> CommonsArrayList.createFiltered(Iterable<? extends SRCTYPE> aValues, Predicate<? super SRCTYPE> aFilter, Function<? super SRCTYPE, ? extends ELEMENTTYPE> aMapper) Create a new array list that contains a subset of the provided iterable.static <SRCTYPE,ELEMENTTYPE>
CommonsArrayList<ELEMENTTYPE> CommonsArrayList.createFiltered(SRCTYPE[] aValues, Function<? super SRCTYPE, ? extends ELEMENTTYPE> aMapper, Predicate<? super ELEMENTTYPE> aFilter) Create a new array list that contains a subset of the provided array.static <SRCTYPE,ELEMENTTYPE>
CommonsArrayList<ELEMENTTYPE> CommonsArrayList.createFiltered(SRCTYPE[] aValues, Predicate<? super SRCTYPE> aFilter, Function<? super SRCTYPE, ? extends ELEMENTTYPE> aMapper) Create a new array list that contains a subset of the provided array.<T> CommonsArrayList<T> CommonsArrayList.createInstance()CommonsArrayList.getClone() -
Uses of CommonsArrayList in com.helger.commons.error.list
Subclasses of CommonsArrayList in com.helger.commons.error.list -
Uses of CommonsArrayList in com.helger.commons.url
Subclasses of CommonsArrayList in com.helger.commons.urlModifier and TypeClassDescriptionclassA list of URL parameters with a sanity API.