Uses of Class
com.helger.commons.collection.impl.CommonsHashSet
-
Packages that use CommonsHashSet Package Description com.helger.commons.collection com.helger.commons.collection.impl com.helger.commons.string -
-
Uses of CommonsHashSet in com.helger.commons.collection
Methods in com.helger.commons.collection that return CommonsHashSet Modifier and Type Method Description static 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>CollectionHelper. newSet(Iterable<? extends ELEMENTTYPE> aCont)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>CollectionHelper. newSet(Iterator<? extends ELEMENTTYPE> aIter)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 CommonsHashSet Modifier and Type Method Description static <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<ELEMENTTYPE>CommonsHashSet. getClone() -
Uses of CommonsHashSet in com.helger.commons.string
Methods in com.helger.commons.string that return CommonsHashSet Modifier and Type Method Description static 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.
-