public class LinkedCaseInsensitiveSet extends LinkedHashSet<String>
| 构造器和说明 |
|---|
LinkedCaseInsensitiveSet()
Constructs a new, empty linked hash set with the default initial
capacity (16) and load factor (0.75).
|
LinkedCaseInsensitiveSet(Locale locale) |
LinkedCaseInsensitiveSet(Locale locale,
Collection<? extends String> source)
Constructor initializing the set with the given collection.
|
| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
add(String element) |
void |
clear() |
boolean |
contains(Object o) |
boolean |
contains(String element)
Verify containment by ignoring case.
|
boolean |
remove(Object o) |
spliteratorequals, hashCode, removeAlladdAll, containsAll, retainAll, toArray, toArray, toStringaddAll, containsAll, equals, hashCode, isEmpty, iterator, removeAll, retainAll, size, toArray, toArrayparallelStream, removeIf, streampublic LinkedCaseInsensitiveSet()
public LinkedCaseInsensitiveSet(Locale locale)
public LinkedCaseInsensitiveSet(Locale locale, Collection<? extends String> source)
source - The source collection to use for initialization.Copyright © 2020. All rights reserved.