public class CaseInsensitiveSet<E> extends Object implements Set<E>
Constructor and Description |
---|
CaseInsensitiveSet() |
CaseInsensitiveSet(Collection<? extends E> collection) |
CaseInsensitiveSet(Collection<? extends E> source,
Map backingMap) |
CaseInsensitiveSet(int initialCapacity) |
CaseInsensitiveSet(int initialCapacity,
float loadFactor) |
Modifier and Type | Method and Description |
---|---|
boolean |
add(E e) |
boolean |
addAll(Collection<? extends E> c) |
void |
clear() |
boolean |
contains(Object o) |
boolean |
containsAll(Collection<?> c) |
boolean |
equals(Object other) |
int |
hashCode() |
boolean |
isEmpty() |
Iterator<E> |
iterator() |
Set |
minus(Iterable removeMe) |
Set |
minus(Object removeMe) |
Set |
plus(Iterable right) |
Set |
plus(Object right) |
boolean |
remove(Object o) |
boolean |
removeAll(Collection<?> c) |
boolean |
retainAll(Collection<?> c) |
int |
size() |
Object[] |
toArray() |
<T> T[] |
toArray(T[] a) |
String |
toString() |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
spliterator
parallelStream, removeIf, stream
public CaseInsensitiveSet()
public CaseInsensitiveSet(Collection<? extends E> collection)
public CaseInsensitiveSet(Collection<? extends E> source, Map backingMap)
public CaseInsensitiveSet(int initialCapacity)
public CaseInsensitiveSet(int initialCapacity, float loadFactor)
public int hashCode()
public boolean equals(Object other)
public int size()
public boolean isEmpty()
public boolean contains(Object o)
public Object[] toArray()
public <T> T[] toArray(T[] a)
public boolean add(E e)
public boolean remove(Object o)
public boolean containsAll(Collection<?> c)
containsAll
in interface Collection<E>
containsAll
in interface Set<E>
public boolean addAll(Collection<? extends E> c)
public boolean retainAll(Collection<?> c)
public boolean removeAll(Collection<?> c)
public void clear()
Copyright © 2024. All rights reserved.