cn.dreampie.common.entity
类 CaseInsensitiveSet

java.lang.Object
  继承者 java.util.AbstractCollection<E>
      继承者 java.util.AbstractSet<E>
          继承者 java.util.TreeSet<String>
              继承者 cn.dreampie.common.entity.CaseInsensitiveSet
所有已实现的接口:
Serializable, Cloneable, Iterable<String>, Collection<String>, NavigableSet<String>, Set<String>, SortedSet<String>

public class CaseInsensitiveSet
extends TreeSet<String>

A case insensitive map for java.lang.String keys. The current implementation is based on TreeMap, so it does not accept null keys and keeps entries ordered by case insensitive alphabetical order of keys.

另请参见:
序列化表格

构造方法摘要
CaseInsensitiveSet()
           
 
方法摘要
 
从类 java.util.TreeSet 继承的方法
add, addAll, ceiling, clear, clone, comparator, contains, descendingIterator, descendingSet, first, floor, headSet, headSet, higher, isEmpty, iterator, last, lower, pollFirst, pollLast, remove, size, subSet, subSet, tailSet, tailSet
 
从类 java.util.AbstractSet 继承的方法
equals, hashCode, removeAll
 
从类 java.util.AbstractCollection 继承的方法
containsAll, retainAll, toArray, toArray, toString
 
从类 java.lang.Object 继承的方法
finalize, getClass, notify, notifyAll, wait, wait, wait
 
从接口 java.util.Set 继承的方法
containsAll, equals, hashCode, removeAll, retainAll, toArray, toArray
 

构造方法详细信息

CaseInsensitiveSet

public CaseInsensitiveSet()


Copyright © 2015. All rights reserved.