Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (C) 2007 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.common.collect;
import com.google.common.base.Nullable;
import com.google.common.base.Preconditions;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
/**
* A high-performance, immutable {@code Set} with reliable, user-specified
* iteration order. Does not permit null elements.
*
*
Unlike {@link Collections#unmodifiableSet}, which is a view of a
* separate collection that can still change, an instance of this class contains
* its own private data and will never change. This class is convenient
* for {@code public static final} sets ("constant sets") and also lets you
* easily make a "defensive copy" of a set provided to your class by a caller.
*
*
Warning: Like most sets, an {@code ImmutableSet} will not function
* correctly if an element is modified after being placed in the set. For this
* reason, and to avoid general confusion, it is strongly recommended to place
* only immutable objects into this collection.
*
*
This class has been observed to perform significantly better than {@link
* HashSet} for objects with very fast {@link Object#hashCode} implementations
* (as a well-behaved immutable object should). While this class's factory
* methods create hash-based instances, the {@link ImmutableSortedSet} subclass
* performs binary searches instead.
*
*
Note: Although this class is not final, it cannot be subclassed
* outside its package as it has no public or protected constructors. Thus,
* instances of this type are guaranteed to be immutable.
*
* @see ImmutableList
* @see ImmutableMap
* @author Kevin Bourrillion
* @author Nick Kralevich
*/
@SuppressWarnings("serial") // we're overriding default serialization
public abstract class ImmutableSet extends ImmutableCollection
implements Set {
private static final ImmutableSet> EMPTY_IMMUTABLE_SET
= new EmptyImmutableSet();
/**
* Returns the empty immutable set. This set behaves and performs comparably
* to {@link Collections#emptySet}, and is preferable mainly for consistency
* and maintainability of your code.
*/
// Casting to any type is safe because the set will never hold any elements.
@SuppressWarnings({"unchecked"})
public static ImmutableSet of() {
return (ImmutableSet) EMPTY_IMMUTABLE_SET;
}
/**
* Returns an immutable set containing a single element. This set behaves and
* performs comparably to {@link Collections#singleton}, but will not accept
* a null element. It is preferable mainly for consistency and
* maintainability of your code.
*/
public static ImmutableSet of(E element) {
return new SingletonImmutableSet(element, element.hashCode());
}
/**
* Returns an immutable set containing the given elements, in order. Repeated
* occurrences of an element (according to {@link Object#equals}) after the
* first are ignored (but too many of these may result in the set being
* sized inappropriately).
*
* @throws NullPointerException if any of {@code elements} is null
*/
public static ImmutableSet of(E... elements) {
switch (elements.length) {
case 0:
return of();
case 1:
return of(elements[0]);
default:
return create(Arrays.asList(elements), elements.length);
}
}
/**
* Returns an immutable set containing the given elements, in order. Repeated
* occurrences of an element (according to {@link Object#equals}) after the
* first are ignored (but too many of these may result in the set being
* sized inappropriately). This method iterates over {@code elements} at most
* once.
*
*
Note that if {@code s} is a {@code Set}, then {@code
* ImmutableSet.copyOf(s)} returns an {@code ImmutableSet} containing
* each of the strings in {@code s}, while {@code ImmutableSet.of(s)} returns
* a {@code ImmutableSet>} containing one element (the given set
* itself).
*
*
Note: Despite what the method name suggests, if {@code elements}
* is an {@code ImmutableSet} (but not an {@code ImmutableSortedSet}), no copy
* will actually be performed, and the given set itself will be returned.
*
* @throws NullPointerException if any of {@code elements} is null
*/
public static ImmutableSet copyOf(Iterable extends E> elements) {
if (elements instanceof ImmutableSet
&& !(elements instanceof ImmutableSortedSet)) {
@SuppressWarnings("unchecked") // all supported methods are covariant
ImmutableSet set = (ImmutableSet) elements;
return set;
}
return copyOfInternal(Collections2.toCollection(elements));
}
/**
* Returns an immutable set containing the given elements, in order. Repeated
* occurrences of an element (according to {@link Object#equals}) after the
* first are ignored.
*
* @throws NullPointerException if any of {@code elements} is null
*/
public static ImmutableSet copyOf(Iterator extends E> elements) {
Collection list = Lists.newArrayList(elements);
return copyOfInternal(list);
}
private static ImmutableSet copyOfInternal(
Collection extends E> collection) {
// TODO: Support concurrent collections that change while this method is
// running.
switch (collection.size()) {
case 0:
return of();
case 1:
// TODO: Remove "ImmutableSet." when eclipse bug is fixed.
return ImmutableSet.of(collection.iterator().next());
default:
return create(collection, collection.size());
}
}
ImmutableSet() {}
/** Returns {@code true} if the {@code hashCode()} method runs quickly. */
boolean isHashCodeFast() {
return false;
}
@Override public boolean equals(@Nullable Object object) {
if (object == this) {
return true;
}
if (object instanceof ImmutableSet
&& isHashCodeFast()
&& ((ImmutableSet>) object).isHashCodeFast()
&& hashCode() != object.hashCode()) {
return false;
}
return Collections2.setEquals(this, object);
}
@Override public int hashCode() {
int hashCode = 0;
for (Object o : this) {
hashCode += o.hashCode();
}
return hashCode;
}
// This declaration is needed to make Set.iterator() and
// ImmutableCollection.iterator() consistent.
@Override public abstract UnmodifiableIterator iterator();
@Override public String toString() {
if (isEmpty()) {
return "[]";
}
Iterator iterator = iterator();
StringBuilder result = new StringBuilder(size() * 16);
result.append('[').append(iterator.next().toString());
for (int i = 1; i < size(); i++) {
result.append(", ").append(iterator.next().toString());
}
return result.append(']').toString();
}
private static final class EmptyImmutableSet extends ImmutableSet