Uses of Class
com.helger.commons.collection.impl.CommonsTreeSet
Packages that use CommonsTreeSet
Package
Description
-
Uses of CommonsTreeSet in com.helger.commons.collection
Methods in com.helger.commons.collection that return CommonsTreeSetModifier and TypeMethodDescriptionstatic CommonsTreeSet<Boolean> PrimitiveCollectionHelper.newPrimitiveSortedSet(boolean... aValues) static CommonsTreeSet<Byte> PrimitiveCollectionHelper.newPrimitiveSortedSet(byte... aValues) static CommonsTreeSet<Character> PrimitiveCollectionHelper.newPrimitiveSortedSet(char... aValues) static CommonsTreeSet<Double> PrimitiveCollectionHelper.newPrimitiveSortedSet(double... aValues) static CommonsTreeSet<Float> PrimitiveCollectionHelper.newPrimitiveSortedSet(float... aValues) static CommonsTreeSet<Integer> PrimitiveCollectionHelper.newPrimitiveSortedSet(int... aValues) static CommonsTreeSet<Long> PrimitiveCollectionHelper.newPrimitiveSortedSet(long... aValues) static CommonsTreeSet<Short> PrimitiveCollectionHelper.newPrimitiveSortedSet(short... aValues) static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>>
CommonsTreeSet<ELEMENTTYPE> CollectionHelper.newSortedSet()static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>>
CommonsTreeSet<ELEMENTTYPE> CollectionHelper.newSortedSet(IIterableIterator<? extends ELEMENTTYPE> aIter) static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>>
CommonsTreeSet<ELEMENTTYPE> CollectionHelper.newSortedSet(ELEMENTTYPE aValue) static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>>
CommonsTreeSet<ELEMENTTYPE> CollectionHelper.newSortedSet(ELEMENTTYPE... aValues) static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>>
CommonsTreeSet<ELEMENTTYPE> CollectionHelper.newSortedSet(Iterable<? extends ELEMENTTYPE> aCont) static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>>
CommonsTreeSet<ELEMENTTYPE> CollectionHelper.newSortedSet(Collection<? extends ELEMENTTYPE> aCont) static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>>
CommonsTreeSet<ELEMENTTYPE> CollectionHelper.newSortedSet(Collection<? extends ELEMENTTYPE> aCollection, Predicate<? super ELEMENTTYPE> aFilter) static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>>
CommonsTreeSet<ELEMENTTYPE> CollectionHelper.newSortedSet(Enumeration<? extends ELEMENTTYPE> aEnum) static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>>
CommonsTreeSet<ELEMENTTYPE> CollectionHelper.newSortedSet(Iterator<? extends ELEMENTTYPE> aIter) static <SRCTYPE,DSTTYPE extends Comparable<? super DSTTYPE>>
CommonsTreeSet<DSTTYPE> CollectionHelper.newSortedSetMapped(Collection<? extends SRCTYPE> aCollection, Function<? super SRCTYPE, DSTTYPE> aMapper) static <SRCTYPE,DSTTYPE extends Comparable<? super DSTTYPE>>
CommonsTreeSet<DSTTYPE> CollectionHelper.newSortedSetMapped(SRCTYPE[] aArray, Function<? super SRCTYPE, DSTTYPE> aMapper) -
Uses of CommonsTreeSet in com.helger.commons.collection.impl
Methods in com.helger.commons.collection.impl that return CommonsTreeSetModifier and TypeMethodDescription<T> CommonsTreeSet<T> CommonsTreeSet.createInstance()CommonsTreeSet.getClone() -
Uses of CommonsTreeSet in com.helger.commons.string
Methods in com.helger.commons.string that return CommonsTreeSetModifier and TypeMethodDescriptionstatic CommonsTreeSet<String> StringHelper.getExplodedToSortedSet(String sSep, String sElements) Take a concatenated String and return a sortedCommonsTreeSetof all elements in the passed string, using specified separator string.