Uses of Interface
org.glassfish.jersey.internal.util.KeyComparator

Packages that use KeyComparator
org.glassfish.jersey.internal.util Common Jersey internal miscellaneous utility classes. 
org.glassfish.jersey.message.internal Common Jersey internal messaging classes. 
 

Uses of KeyComparator in org.glassfish.jersey.internal.util
 

Classes in org.glassfish.jersey.internal.util that implement KeyComparator
 class StringIgnoreCaseKeyComparator
          Case insensitive String key comparator.
 

Constructors in org.glassfish.jersey.internal.util with parameters of type KeyComparator
KeyComparatorHashMap(int initialCapacity, float loadFactor, KeyComparator<K> keyComparator)
          Constructs an empty HashMap with the specified initial capacity and load factor.
KeyComparatorHashMap(int initialCapacity, KeyComparator<K> keyComparator)
          Constructs an empty HashMap with the specified initial capacity and the default load factor (0.75).
KeyComparatorHashMap(KeyComparator<K> keyComparator)
          Constructs an empty HashMap with the default initial capacity (16) and the default load factor (0.75).
KeyComparatorHashMap(java.util.Map<? extends K,? extends V> m, KeyComparator<K> keyComparator)
          Constructs a new HashMap with the same mappings as the specified Map.
KeyComparatorLinkedHashMap(int initialCapacity, float loadFactor, boolean accessOrder, KeyComparator<K> keyComparator)
          Constructs an empty LinkedHashMap instance with the specified initial capacity, load factor and ordering mode.
KeyComparatorLinkedHashMap(int initialCapacity, float loadFactor, KeyComparator<K> keyComparator)
          Constructs an empty insertion-ordered LinkedHashMap instance with the specified initial capacity and load factor.
KeyComparatorLinkedHashMap(int initialCapacity, KeyComparator<K> keyComparator)
          Constructs an empty insertion-ordered LinkedHashMap instance with the specified initial capacity and a default load factor (0.75).
KeyComparatorLinkedHashMap(KeyComparator<K> keyComparator)
          Constructs an empty insertion-ordered LinkedHashMap instance with the default initial capacity (16) and load factor (0.75).
KeyComparatorLinkedHashMap(java.util.Map<? extends K,? extends V> m, KeyComparator<K> keyComparator)
          Constructs an insertion-ordered LinkedHashMap instance with the same mappings as the specified map.
 

Uses of KeyComparator in org.glassfish.jersey.message.internal
 

Fields in org.glassfish.jersey.message.internal declared as KeyComparator
static KeyComparator<MediaType> MessageBodyFactory.MEDIA_TYPE_COMPARATOR
           
 



Copyright © 2007-2012 Oracle Corporation. All Rights Reserved. Use is subject to license terms.