| Package | Description |
|---|---|
| java.awt |
Contains all of the classes for creating user interfaces and for painting graphics and images.
|
| java.security |
Provides the classes and interfaces for the security framework.
|
| java.util |
Contains the collections framework, legacy collection classes, event model, date and time facilities, internationalization, and miscellaneous utility classes (a string tokenizer, a random-number generator, and a bit array).
|
| java.util.concurrent |
Utility classes commonly useful in concurrent programming.
|
| java.util.jar |
Provides classes for reading and writing the JAR (Java ARchive) file format, which is based on the standard ZIP file format with an optional manifest file.
|
| javax.management.openmbean |
Provides the open data types and Open MBean descriptor classes.
|
| javax.script |
The scripting API consists of interfaces and classes that define Java
TM Scripting Engines and provides a framework for their use in Java applications.
|
| Modifier and Type | Method and Description |
|---|---|
Set |
RenderingHints.entrySet()
Returns a
Set view of the mappings contained in this
RenderingHints.
|
| Modifier and Type | Method and Description |
|---|---|
Set |
Provider.entrySet()
Returns an unmodifiable Set view of the property entries contained in this Provider.
|
| Modifier and Type | Class and Description |
|---|---|
static class |
AbstractMap
An Entry maintaining a key and a value.
|
static class |
AbstractMap
An Entry maintaining an immutable key and value.
|
| Modifier and Type | Method and Description |
|---|---|
Map |
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.
|
Map |
TreeMap.ceilingEntry(K key)
|
Map |
NavigableMap.firstEntry()
Returns a key-value mapping associated with the least key in this map, or
null if the map is empty.
|
Map |
TreeMap.firstEntry()
|
Map |
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.
|
Map |
TreeMap.floorEntry(K key)
|
Map |
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.
|
Map |
TreeMap.higherEntry(K key)
|
Map |
NavigableMap.lastEntry()
Returns a key-value mapping associated with the greatest key in this map, or
null if the map is empty.
|
Map |
TreeMap.lastEntry()
|
Map |
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.
|
Map |
TreeMap.lowerEntry(K key)
|
Map |
NavigableMap.pollFirstEntry()
Removes and returns a key-value mapping associated with the least key in this map, or
null if the map is empty.
|
Map |
TreeMap.pollFirstEntry()
|
Map |
NavigableMap.pollLastEntry()
Removes and returns a key-value mapping associated with the greatest key in this map, or
null if the map is empty.
|
Map |
TreeMap.pollLastEntry()
|
| Modifier and Type | Method and Description |
|---|---|
static <K extends Comparable |
Map.Entry.comparingByKey()
Returns a comparator that compares
Map.Entry in natural order on key.
|
static <K |
Map.Entry.comparingByKey(Comparator
Returns a comparator that compares
Map.Entry by key using the given
Comparator.
|
static <K |
Map.Entry.comparingByValue()
Returns a comparator that compares
Map.Entry in natural order on value.
|
static <K |
Map.Entry.comparingByValue(Comparator
Returns a comparator that compares
Map.Entry by value using the given
Comparator.
|
Set |
SortedMap.entrySet()
Returns a
Set view of the mappings contained in this map.
|
Set |
Map.entrySet()
Returns a
Set view of the mappings contained in this map.
|
Set |
EnumMap.entrySet()
Returns a
Set view of the mappings contained in this map.
|
abstract Set |
AbstractMap.entrySet()
|
Set |
HashMap.entrySet()
Returns a
Set view of the mappings contained in this map.
|
Set |
LinkedHashMap.entrySet()
Returns a
Set view of the mappings contained in this map.
|
Set |
Hashtable.entrySet()
Returns a
Set view of the mappings contained in this map.
|
Set |
WeakHashMap.entrySet()
Returns a
Set view of the mappings contained in this map.
|
Set |
IdentityHashMap.entrySet()
Returns a
Set view of the mappings contained in this map.
|
Set |
TreeMap.entrySet()
Returns a
Set view of the mappings contained in this map.
|
| Modifier and Type | Method and Description |
|---|---|
protected boolean |
LinkedHashMap.removeEldestEntry(Map
Returns
true if this map should remove its eldest entry.
|
| Constructor and Description | |
|---|---|
SimpleEntry(Map
Creates an entry representing the same mapping as the specified entry.
|
|
SimpleImmutableEntry(Map
Creates an entry representing the same mapping as the specified entry.
|
| Modifier and Type | Method and Description |
|---|---|
Map |
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.
|
Map |
ConcurrentSkipListMap.firstEntry()
Returns a key-value mapping associated with the least key in this map, or
null if the map is empty.
|
Map |
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.
|
Map |
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.
|
Map |
ConcurrentSkipListMap.lastEntry()
Returns a key-value mapping associated with the greatest key in this map, or
null if the map is empty.
|
Map |
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.
|
Map |
ConcurrentSkipListMap.pollFirstEntry()
Removes and returns a key-value mapping associated with the least key in this map, or
null if the map is empty.
|
Map |
ConcurrentSkipListMap.pollLastEntry()
Removes and returns a key-value mapping associated with the greatest key in this map, or
null if the map is empty.
|
Map |
ConcurrentHashMap.reduceEntries(long parallelismThreshold, BiFunction
Returns the result of accumulating all entries using the given reducer to combine values, or null if none.
|
| Modifier and Type | Method and Description |
|---|---|
Set |
ConcurrentHashMap.entrySet()
Returns a
Set view of the mappings contained in this map.
|
Set |
ConcurrentSkipListMap.entrySet()
Returns a
Set view of the mappings contained in this map.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ConcurrentHashMap.forEachEntry(long parallelismThreshold, Consumer
Performs the given action for each entry.
|
<U> void |
ConcurrentHashMap.forEachEntry(long parallelismThreshold, Function
Performs the given action for each non-null transformation of each entry.
|
Map |
ConcurrentHashMap.reduceEntries(long parallelismThreshold, BiFunction
Returns the result of accumulating all entries using the given reducer to combine values, or null if none.
|
Map |
ConcurrentHashMap.reduceEntries(long parallelismThreshold, BiFunction
Returns the result of accumulating all entries using the given reducer to combine values, or null if none.
|
Map |
ConcurrentHashMap.reduceEntries(long parallelismThreshold, BiFunction
Returns the result of accumulating all entries using the given reducer to combine values, or null if none.
|
<U> U |
ConcurrentHashMap.reduceEntries(long parallelismThreshold, Function
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
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
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
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.
|
<U> U |
ConcurrentHashMap.searchEntries(long parallelismThreshold, Function
Returns a non-null result from applying the given search function on each entry, or null if none.
|
| Modifier and Type | Method and Description |
|---|---|
Set |
Attributes.entrySet()
Returns a Collection view of the attribute name-value mappings contained in this Map.
|
| Modifier and Type | Method and Description |
|---|---|
Set |
TabularDataSupport.entrySet()
Returns a collection view of the index to row mappings contained in this
TabularDataSupport instance.
|
| Modifier and Type | Method and Description |
|---|---|
Set |
SimpleBindings.entrySet()
Returns a
Set view of the mappings contained in this map.
|