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 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 java.util;
import static javaemul.internal.InternalPreconditions.checkArgument;
import static javaemul.internal.InternalPreconditions.checkNotNull;
import jsinterop.annotations.JsIgnore;
import jsinterop.annotations.JsType;
/**
* Represents a set of unique objects. [Sun docs]
*
* @param element type.
*/
@JsType
public interface Set extends Collection {
@JsIgnore
static Set of() {
return Collections.unmodifiableSet(Collections.emptySet());
}
@JsIgnore
static Set of(E e1) {
return of((E[]) new Object[] {e1});
}
@JsIgnore
static Set of(E e1, E e2) {
return of((E[]) new Object[] {e1, e2});
}
@JsIgnore
static Set of(E e1, E e2, E e3) {
return of((E[]) new Object[] {e1, e2, e3});
}
@JsIgnore
static Set of(E e1, E e2, E e3, E e4) {
return of((E[]) new Object[] {e1, e2, e3, e4});
}
@JsIgnore
static Set of(E e1, E e2, E e3, E e4, E e5) {
return of((E[]) new Object[] {e1, e2, e3, e4, e5});
}
@JsIgnore
static Set of(E e1, E e2, E e3, E e4, E e5, E e6) {
return of((E[]) new Object[] {e1, e2, e3, e4, e5, e6});
}
@JsIgnore
static Set of(E e1, E e2, E e3, E e4, E e5, E e6, E e7) {
return of((E[]) new Object[] {e1, e2, e3, e4, e5, e6, e7});
}
@JsIgnore
static Set of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8) {
return of((E[]) new Object[] {e1, e2, e3, e4, e5, e6, e7, e8});
}
@JsIgnore
static Set of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9) {
return of((E[]) new Object[] {e1, e2, e3, e4, e5, e6, e7, e8, e9});
}
@JsIgnore
static Set of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10) {
return of((E[]) new Object[] {e1, e2, e3, e4, e5, e6, e7, e8, e9, e10});
}
@JsIgnore
static Set of(E... elements) {
HashSet set = new HashSet<>();
for (int i = 0; i < elements.length; i++) {
checkArgument(set.add(checkNotNull(elements[i])), "Can't add the same item multiple times");
}
return Collections.unmodifiableSet(set);
}
@JsIgnore
@Override
default Spliterator spliterator() {
return Spliterators.spliterator(this, Spliterator.DISTINCT);
}
}