Uses of Class
org.apache.pivot.collections.Dictionary.Pair

Packages that use Dictionary.Pair
org.apache.pivot.collections Defines a set of classes and interfaces that serve as generic collections as well as the data model for UI components. 
 

Uses of Dictionary.Pair in org.apache.pivot.collections
 

Methods in org.apache.pivot.collections that return Dictionary.Pair
 Dictionary.Pair<K,V> MapList.get(int index)
          Retrieves the item at the given index.
 Dictionary.Pair<K,V> MapList.update(int index, Dictionary.Pair<K,V> pair)
          Updates the item at the given index.
 

Methods in org.apache.pivot.collections that return types with arguments of type Dictionary.Pair
 Comparator<Dictionary.Pair<K,V>> MapList.getComparator()
          Returns the collection's sort order.
 ListenerList<ListListener<Dictionary.Pair<K,V>>> MapList.getListListeners()
          Returns the list listener list.
 Iterator<Dictionary.Pair<K,V>> MapList.iterator()
          
 Sequence<Dictionary.Pair<K,V>> MapList.remove(int index, int count)
          Removes one or more items from the sequence.
 

Methods in org.apache.pivot.collections with parameters of type Dictionary.Pair
 int MapList.add(Dictionary.Pair<K,V> pair)
          Adds an item to the list.
 int MapList.indexOf(Dictionary.Pair<K,V> pair)
          Returns the index of an item in the sequence.
 void MapList.insert(Dictionary.Pair<K,V> pair, int index)
          Inserts an item into the list.
 int MapList.remove(Dictionary.Pair<K,V> pair)
          Removes the first occurrence of the given item from the sequence.
 Dictionary.Pair<K,V> MapList.update(int index, Dictionary.Pair<K,V> pair)
          Updates the item at the given index.
 

Method parameters in org.apache.pivot.collections with type arguments of type Dictionary.Pair
 void MapList.setComparator(Comparator<Dictionary.Pair<K,V>> comparator)
          Sets the collection's sort order, re-ordering the collection's contents and ensuring that new entries preserve the sort order.
 

Constructors in org.apache.pivot.collections with parameters of type Dictionary.Pair
HashMap(Dictionary.Pair<K,V>... entries)