类 IgnoreCaseSet
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractSet<E>
-
- java.util.HashSet<String>
-
- org.sagacity.sqltoy.model.IgnoreCaseSet
-
-
构造器概要
构造器 构造器 说明 IgnoreCaseSet()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 booleanadd(String e)booleanaddAll(Collection<? extends String> c)voidclear()booleancontains(Object o)booleancontainsAll(Collection<?> c)booleanisEmpty()Iterator<String>iterator()booleanremove(Object o)booleanremoveAll(Collection<?> c)booleanretainAll(Collection<?> c)intsize()Object[]toArray()<T> T[]toArray(T[] a)-
从类继承的方法 java.util.HashSet
clone, spliterator
-
从类继承的方法 java.util.AbstractSet
equals, hashCode
-
从类继承的方法 java.util.AbstractCollection
toString
-
从接口继承的方法 java.util.Collection
parallelStream, removeIf, stream, toArray
-
-
-
-
方法详细资料
-
size
public int size()
-
isEmpty
public boolean isEmpty()
-
contains
public boolean contains(Object o)
-
toArray
public Object[] toArray()
- 指定者:
toArray在接口中Collection<String>- 指定者:
toArray在接口中Set<String>- 覆盖:
toArray在类中AbstractCollection<String>
-
toArray
public <T> T[] toArray(T[] a)
- 指定者:
toArray在接口中Collection<String>- 指定者:
toArray在接口中Set<String>- 覆盖:
toArray在类中AbstractCollection<String>
-
add
public boolean add(String e)
-
remove
public boolean remove(Object o)
-
containsAll
public boolean containsAll(Collection<?> c)
- 指定者:
containsAll在接口中Collection<String>- 指定者:
containsAll在接口中Set<String>- 覆盖:
containsAll在类中AbstractCollection<String>
-
addAll
public boolean addAll(Collection<? extends String> c)
- 指定者:
addAll在接口中Collection<String>- 指定者:
addAll在接口中Set<String>- 覆盖:
addAll在类中AbstractCollection<String>
-
retainAll
public boolean retainAll(Collection<?> c)
- 指定者:
retainAll在接口中Collection<String>- 指定者:
retainAll在接口中Set<String>- 覆盖:
retainAll在类中AbstractCollection<String>
-
removeAll
public boolean removeAll(Collection<?> c)
- 指定者:
removeAll在接口中Collection<String>- 指定者:
removeAll在接口中Set<String>- 覆盖:
removeAll在类中AbstractSet<String>
-
-