Uses of Class
com.helger.commons.collection.impl.CommonsHashSet
Packages that use CommonsHashSet
Package
Description
-
Uses of CommonsHashSet in com.helger.commons.collection
Methods in com.helger.commons.collection that return CommonsHashSetModifier and TypeMethodDescriptionstatic CommonsHashSet<Boolean> PrimitiveCollectionHelper.newPrimitiveSet(boolean... aValues) static CommonsHashSet<Byte> PrimitiveCollectionHelper.newPrimitiveSet(byte... aValues) static CommonsHashSet<Character> PrimitiveCollectionHelper.newPrimitiveSet(char... aValues) static CommonsHashSet<Double> PrimitiveCollectionHelper.newPrimitiveSet(double... aValues) static CommonsHashSet<Float> PrimitiveCollectionHelper.newPrimitiveSet(float... aValues) static CommonsHashSet<Integer> PrimitiveCollectionHelper.newPrimitiveSet(int... aValues) static CommonsHashSet<Long> PrimitiveCollectionHelper.newPrimitiveSet(long... aValues) static CommonsHashSet<Short> PrimitiveCollectionHelper.newPrimitiveSet(short... aValues) static <ELEMENTTYPE>
CommonsHashSet<ELEMENTTYPE> CollectionHelper.newSet()static <ELEMENTTYPE>
CommonsHashSet<ELEMENTTYPE> CollectionHelper.newSet(int nInitialCapacity) static <ELEMENTTYPE>
CommonsHashSet<ELEMENTTYPE> CollectionHelper.newSet(IIterableIterator<? extends ELEMENTTYPE> aIter) static <ELEMENTTYPE>
CommonsHashSet<ELEMENTTYPE> CollectionHelper.newSet(ELEMENTTYPE aValue) static <ELEMENTTYPE>
CommonsHashSet<ELEMENTTYPE> CollectionHelper.newSet(ELEMENTTYPE... aValues) static <ELEMENTTYPE>
CommonsHashSet<ELEMENTTYPE> static <ELEMENTTYPE>
CommonsHashSet<ELEMENTTYPE> CollectionHelper.newSet(Collection<? extends ELEMENTTYPE> aCont) static <ELEMENTTYPE>
CommonsHashSet<ELEMENTTYPE> CollectionHelper.newSet(Collection<? extends ELEMENTTYPE> aCollection, Predicate<? super ELEMENTTYPE> aFilter) static <ELEMENTTYPE>
CommonsHashSet<ELEMENTTYPE> CollectionHelper.newSet(Enumeration<? extends ELEMENTTYPE> aEnum) static <ELEMENTTYPE>
CommonsHashSet<ELEMENTTYPE> static <SRCTYPE,DSTTYPE>
CommonsHashSet<DSTTYPE> CollectionHelper.newSetMapped(Collection<? extends SRCTYPE> aCollection, Function<? super SRCTYPE, DSTTYPE> aMapper) static <SRCTYPE,DSTTYPE>
CommonsHashSet<DSTTYPE> CollectionHelper.newSetMapped(SRCTYPE[] aArray, Function<? super SRCTYPE, DSTTYPE> aMapper) -
Uses of CommonsHashSet in com.helger.commons.collection.impl
Methods in com.helger.commons.collection.impl that return CommonsHashSetModifier and TypeMethodDescriptionstatic <ELEMENTTYPE>
CommonsHashSet<ELEMENTTYPE> CommonsHashSet.createFiltered(ELEMENTTYPE[] aValues, Predicate<? super ELEMENTTYPE> aFilter) static <ELEMENTTYPE>
CommonsHashSet<ELEMENTTYPE> CommonsHashSet.createFiltered(Iterable<? extends ELEMENTTYPE> aValues, Predicate<? super ELEMENTTYPE> aFilter) static <SRCTYPE,ELEMENTTYPE>
CommonsHashSet<ELEMENTTYPE> CommonsHashSet.createFiltered(Iterable<? extends SRCTYPE> aValues, Function<? super SRCTYPE, ? extends ELEMENTTYPE> aMapper, Predicate<? super ELEMENTTYPE> aFilter) Create a new hash set that contains a subset of the provided iterable.static <SRCTYPE,ELEMENTTYPE>
CommonsHashSet<ELEMENTTYPE> CommonsHashSet.createFiltered(Iterable<? extends SRCTYPE> aValues, Predicate<? super SRCTYPE> aFilter, Function<? super SRCTYPE, ? extends ELEMENTTYPE> aMapper) Create a new hash set that contains a subset of the provided iterable.static <SRCTYPE,ELEMENTTYPE>
CommonsHashSet<ELEMENTTYPE> CommonsHashSet.createFiltered(SRCTYPE[] aValues, Function<? super SRCTYPE, ? extends ELEMENTTYPE> aMapper, Predicate<? super ELEMENTTYPE> aFilter) Create a new hash set that contains a subset of the provided array.static <SRCTYPE,ELEMENTTYPE>
CommonsHashSet<ELEMENTTYPE> CommonsHashSet.createFiltered(SRCTYPE[] aValues, Predicate<? super SRCTYPE> aFilter, Function<? super SRCTYPE, ? extends ELEMENTTYPE> aMapper) Create a new hash set that contains a subset of the provided array.<T> CommonsHashSet<T> CommonsHashSet.createInstance()CommonsHashSet.getClone() -
Uses of CommonsHashSet in com.helger.commons.string
Methods in com.helger.commons.string that return CommonsHashSetModifier and TypeMethodDescriptionstatic CommonsHashSet<String> StringHelper.getExplodedToSet(String sSep, String sElements) Take a concatenated String and return aSetof all elements in the passed string, using specified separator string.