blob: 19aa96be2b212f6b137c856f053590611b302e20 [file] [log] [blame]
/*
* Copyright 2000-2012 JetBrains s.r.o.
*
* 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.intellij.util;
import com.intellij.util.containers.ContainerUtil;
import com.intellij.util.containers.SingletonIterator;
import gnu.trove.TObjectHashingStrategy;
import org.jetbrains.annotations.NotNull;
import java.lang.reflect.Array;
import java.util.Collection;
import java.util.Iterator;
import java.util.Set;
/**
* Read-only set consisting of the only element
*/
public class SingletonSet<E> implements Set<E> {
private final E theElement;
@NotNull private final TObjectHashingStrategy<E> strategy;
public SingletonSet(E e) {
this(e, ContainerUtil.<E>canonicalStrategy());
}
public SingletonSet(E e, @NotNull final TObjectHashingStrategy<E> strategy) {
theElement = e;
this.strategy = strategy;
}
@Override
public int size() {
return 1;
}
@Override
public boolean contains(Object elem) {
return strategy.equals(theElement, (E)elem);
}
@NotNull
@Override
public Iterator<E> iterator() {
return new SingletonIterator<E>(theElement);
}
@NotNull
@Override
public Object[] toArray() {
return new Object[]{theElement};
}
@NotNull
@Override
public <T> T[] toArray(@NotNull T[] a) {
if (a.length == 0) {
a = (T[]) Array.newInstance(a.getClass().getComponentType(), 1);
}
a[0] = (T)theElement;
if (a.length > 1) {
a[1] = null;
}
return a;
}
@Override
public boolean add(E t) {
throw new IncorrectOperationException();
}
@Override
public boolean remove(Object o) {
throw new IncorrectOperationException();
}
@Override
public boolean containsAll(@NotNull Collection<?> c) {
for (Object e : c) {
if (!contains(e)) {
return false;
}
}
return true;
}
@Override
public boolean addAll(@NotNull Collection<? extends E> c) {
throw new IncorrectOperationException();
}
@Override
public boolean retainAll(@NotNull Collection<?> c) {
throw new IncorrectOperationException();
}
@Override
public boolean removeAll(@NotNull Collection<?> c) {
throw new IncorrectOperationException();
}
@Override
public void clear() {
throw new IncorrectOperationException();
}
@Override
public boolean isEmpty() {
return false;
}
}