package org.eclipse.collections.impl.set.strategy.immutable;
import org.eclipse.collections.api.block.HashingStrategy;
import org.eclipse.collections.api.factory.set.strategy.ImmutableHashingStrategySetFactory;
import org.eclipse.collections.api.set.ImmutableSet;
import org.eclipse.collections.impl.utility.Iterate;
public enum ImmutableHashingStrategySetFactoryImpl implements ImmutableHashingStrategySetFactory
{
INSTANCE;
@Override
public <T> ImmutableSet<T> of(HashingStrategy<? super T> hashingStrategy)
{
return this.with(hashingStrategy);
}
@Override
public <T> ImmutableSet<T> with(HashingStrategy<? super T> hashingStrategy)
{
return new ImmutableEmptySetWithHashingStrategy<>(hashingStrategy);
}
@Override
public <T> ImmutableSet<T> of(HashingStrategy<? super T> hashingStrategy, T... items)
{
return this.with(hashingStrategy, items);
}
@Override
public <T> ImmutableSet<T> with(HashingStrategy<? super T> hashingStrategy, T... items)
{
if (items == null || items.length == 0)
{
return this.of(hashingStrategy);
}
return ImmutableUnifiedSetWithHashingStrategy.newSetWith(hashingStrategy, items);
}
@Override
public <T> ImmutableSet<T> ofAll(HashingStrategy<? super T> hashingStrategy, Iterable<? extends T> items)
{
return this.withAll(hashingStrategy, items);
}
@Override
public <T> ImmutableSet<T> withAll(HashingStrategy<? super T> hashingStrategy, Iterable<? extends T> items)
{
return this.with(hashingStrategy, (T[]) Iterate.toArray(items));
}
@Override
public <T> ImmutableSet<T> ofInitialCapacity(HashingStrategy<? super T> hashingStrategy, int capacity)
{
return this.withInitialCapacity(hashingStrategy, capacity);
}
@Override
public <T> ImmutableSet<T> withInitialCapacity(HashingStrategy<? super T> hashingStrategy, int capacity)
{
return ImmutableUnifiedSetWithHashingStrategy.newSet(hashingStrategy, capacity);
}
}