Serializable, Iterable<String>, Collection<String>, Set<String>public class CaseInsensitiveSet extends Object implements Set<String>, Serializable
| Constructor | Description |
|---|---|
CaseInsensitiveSet() |
|
CaseInsensitiveSet(Set<String> newSet) |
|
CaseInsensitiveSet(Set<String> newSet,
Locale locale) |
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
add(String e) |
|
boolean |
addAll(Collection<? extends String> c) |
|
void |
clear() |
|
boolean |
contains(Object e) |
|
boolean |
containsAll(Collection<?> c) |
|
boolean |
isEmpty() |
|
Iterator<String> |
iterator() |
|
boolean |
remove(Object e) |
|
boolean |
removeAll(Collection<?> c) |
|
boolean |
retainAll(Collection<?> c) |
|
int |
size() |
|
Object[] |
toArray() |
|
<T> T[] |
toArray(T[] a) |
|
protected String |
toLowerCase(String e) |
parallelStream, removeIf, streampublic int size()
public boolean isEmpty()
public boolean contains(Object e)
public Object[] toArray()
public <T> T[] toArray(T[] a)
public boolean add(String e)
public boolean remove(Object e)
public boolean containsAll(Collection<?> c)
containsAll in interface Collection<String>containsAll in interface Set<String>public boolean addAll(Collection<? extends String> c)
public boolean retainAll(Collection<?> c)
public boolean removeAll(Collection<?> c)
public void clear()
Copyright © 2018. All rights reserved.