Uses of Class
org.vostok.lang.Entry

Packages that use Entry
org.vostok.lang Extend the base java lang package :
PriorityList  
 

Uses of Entry in org.vostok.lang
 

Fields in org.vostok.lang declared as Entry
protected  Entry[] PriorityList.array
          internal array of data, ordered : first = most used
 

Methods in org.vostok.lang that return Entry
 Entry PriorityList.find(java.lang.Comparable<Entry> comparable)
          Find en entry using a comparator.
 Entry PriorityList.find(Entry e)
          Find en entry using an Entry object. check is done against both hashkey, which only use their key.
 Entry PriorityList.find(java.lang.String key)
          Find entry by key.
 

Methods in org.vostok.lang that return types with arguments of type Entry
 java.util.Iterator<Entry> PriorityList.iterator()
          return a new iterator on the list's elements
 

Methods in org.vostok.lang with parameters of type Entry
 boolean PriorityList.add(Entry e)
          add new entry to the list.
 Entry PriorityList.find(Entry e)
          Find en entry using an Entry object. check is done against both hashkey, which only use their key.
 int PriorityList.findPosition(Entry o)
          find position of an entry.
 

Method parameters in org.vostok.lang with type arguments of type Entry
 boolean PriorityList.addAll(java.util.Collection<? extends Entry> c)
          add all Entry from c.
 Entry PriorityList.find(java.lang.Comparable<Entry> comparable)
          Find en entry using a comparator.