Use 
PREV   NEXT      All Classes   All Packages
FlexDoc/Javadoc 2.0
Demo Java Doc

Uses of Interface
java.util.Map.Entry
Packages that use Map.Entry
Contains the collections framework, some internationalization support classes, a service loader, properties, random number generation, string parsing and scanning classes, base64 encoding and decoding, a bit array, and several miscellaneous utility classes.
Utility classes commonly useful in concurrent programming.
Uses of Map.Entry in java.util
Classes in java.util that implement Map.Entry
static class
An Entry maintaining a key and a value.
static class
An unmodifiable Entry maintaining a key and a value.
Methods in java.util that return Map.Entry
static <K,V> Map.Entry<K,V>
Map.entry(K k, V v)
Returns an unmodifiable Map.Entry containing the given key and value.
static <K,V> Map.Entry<K,V>
Map.Entry.copyOf(Map.Entry<? extends K,? extends V> e)
Returns a copy of the given Map.Entry.
NavigableMap.ceilingEntry(K key)
Returns a key-value mapping associated with the least key greater than or equal to the given key, or null if there is no such key.
NavigableMap.firstEntry()
Returns a key-value mapping associated with the least key in this map, or null if the map is empty.
NavigableMap.floorEntry(K key)
Returns a key-value mapping associated with the greatest key less than or equal to the given key, or null if there is no such key.
NavigableMap.higherEntry(K key)
Returns a key-value mapping associated with the least key strictly greater than the given key, or null if there is no such key.
NavigableMap.lastEntry()
Returns a key-value mapping associated with the greatest key in this map, or null if the map is empty.
NavigableMap.lowerEntry(K key)
Returns a key-value mapping associated with the greatest key strictly less than the given key, or null if there is no such key.
NavigableMap.pollFirstEntry()
Removes and returns a key-value mapping associated with the least key in this map, or null if the map is empty.
NavigableMap.pollLastEntry()
Removes and returns a key-value mapping associated with the greatest key in this map, or null if the map is empty.
TreeMap.ceilingEntry(K key)
Returns a key-value mapping associated with the least key greater than or equal to the given key, or null if there is no such key.
TreeMap.firstEntry()
Returns a key-value mapping associated with the least key in this map, or null if the map is empty.
TreeMap.floorEntry(K key)
Returns a key-value mapping associated with the greatest key less than or equal to the given key, or null if there is no such key.
TreeMap.higherEntry(K key)
Returns a key-value mapping associated with the least key strictly greater than the given key, or null if there is no such key.
TreeMap.lastEntry()
Returns a key-value mapping associated with the greatest key in this map, or null if the map is empty.
TreeMap.lowerEntry(K key)
Returns a key-value mapping associated with the greatest key strictly less than the given key, or null if there is no such key.
TreeMap.pollFirstEntry()
Removes and returns a key-value mapping associated with the least key in this map, or null if the map is empty.
TreeMap.pollLastEntry()
Removes and returns a key-value mapping associated with the greatest key in this map, or null if the map is empty.
Methods in java.util that return types with arguments of type Map.Entry
abstract Set<Map.Entry<K,V>>
AbstractMap.entrySet()
Returns a Set view of the mappings contained in this map.
EnumMap.entrySet()
Returns a Set view of the mappings contained in this map.
HashMap.entrySet()
Returns a Set view of the mappings contained in this map.
Hashtable.entrySet()
Returns a Set view of the mappings contained in this map.
IdentityHashMap.entrySet()
Returns a Set view of the mappings contained in this map.
LinkedHashMap.entrySet()
Returns a Set view of the mappings contained in this map.
Map.entrySet()
Returns a Set view of the mappings contained in this map.
static <K extends Comparable<? super K>,V> Comparator<Map.Entry<K,V>>
Map.Entry.comparingByKey()
Returns a comparator that compares Map.Entry in natural order on key.
static <K,V> Comparator<Map.Entry<K,V>>
Map.Entry.comparingByKey(Comparator<? super K> cmp)
Returns a comparator that compares Map.Entry by key using the given Comparator.
static <K,V extends Comparable<? super V>> Comparator<Map.Entry<K,V>>
Map.Entry.comparingByValue()
Returns a comparator that compares Map.Entry in natural order on value.
static <K,V> Comparator<Map.Entry<K,V>>
Map.Entry.comparingByValue(Comparator<? super V> cmp)
Returns a comparator that compares Map.Entry by value using the given Comparator.
Properties.entrySet()
Returns a Set view of the mappings contained in this map.
SortedMap.entrySet()
Returns a Set view of the mappings contained in this map.
TreeMap.entrySet()
Returns a Set view of the mappings contained in this map.
WeakHashMap.entrySet()
Returns a Set view of the mappings contained in this map.
Methods in java.util with parameters of type Map.Entry
protected boolean
LinkedHashMap.removeEldestEntry(Map.Entry<K,V> eldest)
Returns true if this map should remove its eldest entry.
static <K,VMap<K,V>
Map.ofEntries(Map.Entry<? extends K,? extends V>... entries)
Returns an unmodifiable map containing keys and values extracted from the given entries.
static <K,V> Map.Entry<K,V>
Map.Entry.copyOf(Map.Entry<? extends K,? extends V> e)
Returns a copy of the given Map.Entry.
Constructors in java.util with parameters of type Map.Entry
SimpleEntry(Map.Entry<? extends K,? extends V> entry)
Creates an entry representing the same mapping as the specified entry.
SimpleImmutableEntry(Map.Entry<? extends K,? extends V> entry)
Creates an entry representing the same mapping as the specified entry.
Methods in java.util.concurrent that return Map.Entry
ConcurrentHashMap.reduceEntries(long parallelismThreshold, BiFunction<Map.Entry<K,V>,? extends Map.Entry<K,V>> reducer)
Returns the result of accumulating all entries using the given reducer to combine values, or null if none.
ConcurrentSkipListMap.ceilingEntry(K key)
Returns a key-value mapping associated with the least key greater than or equal to the given key, or null if there is no such entry.
ConcurrentSkipListMap.firstEntry()
Returns a key-value mapping associated with the least key in this map, or null if the map is empty.
ConcurrentSkipListMap.floorEntry(K key)
Returns a key-value mapping associated with the greatest key less than or equal to the given key, or null if there is no such key.
ConcurrentSkipListMap.higherEntry(K key)
Returns a key-value mapping associated with the least key strictly greater than the given key, or null if there is no such key.
ConcurrentSkipListMap.lastEntry()
Returns a key-value mapping associated with the greatest key in this map, or null if the map is empty.
ConcurrentSkipListMap.lowerEntry(K key)
Returns a key-value mapping associated with the greatest key strictly less than the given key, or null if there is no such key.
ConcurrentSkipListMap.pollFirstEntry()
Removes and returns a key-value mapping associated with the least key in this map, or null if the map is empty.
ConcurrentSkipListMap.pollLastEntry()
Removes and returns a key-value mapping associated with the greatest key in this map, or null if the map is empty.
Methods in java.util.concurrent that return types with arguments of type Map.Entry
ConcurrentHashMap.entrySet()
Returns a Set view of the mappings contained in this map.
ConcurrentSkipListMap.entrySet()
Returns a Set view of the mappings contained in this map.
Method parameters in java.util.concurrent with type arguments of type Map.Entry
void
ConcurrentHashMap.forEachEntry(long parallelismThreshold, Consumer<? super Map.Entry<K,V>> action)
Performs the given action for each entry.
<U> void
ConcurrentHashMap.forEachEntry(long parallelismThreshold, Function<Map.Entry<K,V>,? extends U> transformer, Consumer<? super U> action)
Performs the given action for each non-null transformation of each entry.
ConcurrentHashMap.reduceEntries(long parallelismThreshold, BiFunction<Map.Entry<K,V>,? extends Map.Entry<K,V>> reducer)
Returns the result of accumulating all entries using the given reducer to combine values, or null if none.
<UU
ConcurrentHashMap.reduceEntries(long parallelismThreshold, Function<Map.Entry<K,V>,? extends U> transformer, BiFunction<? super U,? super U,? extends U> reducer)
Returns the result of accumulating the given transformation of all entries using the given reducer to combine values, or null if none.
double
ConcurrentHashMap.reduceEntriesToDouble(long parallelismThreshold, ToDoubleFunction<Map.Entry<K,V>> transformer, double basis, DoubleBinaryOperator reducer)
Returns the result of accumulating the given transformation of all entries using the given reducer to combine values, and the given basis as an identity value.
int
ConcurrentHashMap.reduceEntriesToInt(long parallelismThreshold, ToIntFunction<Map.Entry<K,V>> transformer, int basis, IntBinaryOperator reducer)
Returns the result of accumulating the given transformation of all entries using the given reducer to combine values, and the given basis as an identity value.
long
ConcurrentHashMap.reduceEntriesToLong(long parallelismThreshold, ToLongFunction<Map.Entry<K,V>> transformer, long basis, LongBinaryOperator reducer)
Returns the result of accumulating the given transformation of all entries using the given reducer to combine values, and the given basis as an identity value.
<UU
ConcurrentHashMap.searchEntries(long parallelismThreshold, Function<Map.Entry<K,V>,? extends U> searchFunction)
Returns a non-null result from applying the given search function on each entry, or null if none.

 Use 
PREV   NEXT      All Classes   All Packages
FlexDoc/Javadoc 2.0
Demo Java Doc

Java API documentation generated with FlexDoc/Javadoc 2.0 using JavadocClassic 3.0 template set.
FlexDoc/Javadoc is a template-driven programming tool for rapid development of any Javadoc-based Java API documentation generators (i.e. doclets). If you need to customize your Javadoc without writing a full-blown doclet from scratch, FlexDoc/Javadoc may be the only tool able to help you! Find out more at www.flexdoc.xyz