软件包 | 描述 |
---|---|
java.awt |
包含创建用户界面和绘制图形和图像的所有类。
|
java.security |
为安全框架提供类和接口。
|
java.util |
包含集合框架、遗留的集合类、事件模型、日期和时间的设施、国际化和各种实用工具类(一个字符串标记,一个随机数发生器,和一位阵列)。
|
java.util.concurrent |
在并发编程中常用的实用类。
|
java.util.jar |
阅读和写作的罐提供的类(java文件)文件格式,它是基于标准的ZIP文件格式可选清单文件。
|
javax.management.openmbean |
提供开放的数据类型和开放MBean描述符类。
|
javax.script |
脚本API的接口和类,定义
TM java脚本引擎提供了一种用于java应用程序框架。
|
Modifier and Type | Method and Description |
---|---|
Set<Map.Entry<Object,Object>> |
RenderingHints.entrySet()
返回一个
Set 映射的视图包含在本
RenderingHints 。
|
Modifier and Type | Method and Description |
---|---|
Set<Map.Entry<Object,Object>> |
Provider.entrySet()
返回一个不可修改的设置视图的属性条目包含在该提供商。
|
Modifier and Type | Class and Description |
---|---|
static class |
AbstractMap.SimpleEntry<K,V>
一个维护一个键和一个值的条目。
|
static class |
AbstractMap.SimpleImmutableEntry<K,V>
一个保持一个不可改变的键和值的条目。
|
Modifier and Type | Method and Description |
---|---|
Map.Entry<K,V> |
NavigableMap.ceilingEntry(K key)
返回的键值映射与最关键的大于或等于给定的键,或
null 如果没有这样的关键。
|
Map.Entry<K,V> |
TreeMap.ceilingEntry(K key) |
Map.Entry<K,V> |
NavigableMap.firstEntry()
返回一个与该图的最小密钥相关的键值映射,或
null 如果Map是空的。
|
Map.Entry<K,V> |
TreeMap.firstEntry() |
Map.Entry<K,V> |
NavigableMap.floorEntry(K key)
返回的键值映射与最大的小于或等于给定的键,或
null 如果没有这样的关键。
|
Map.Entry<K,V> |
TreeMap.floorEntry(K key) |
Map.Entry<K,V> |
NavigableMap.higherEntry(K key)
返回的键值映射与最关键严格大于给定的键,或
null 如果没有这样的关键。
|
Map.Entry<K,V> |
TreeMap.higherEntry(K key) |
Map.Entry<K,V> |
NavigableMap.lastEntry()
返回一个与该Map的最大密钥相关的键值映射,或
null 如果Map是空的。
|
Map.Entry<K,V> |
TreeMap.lastEntry() |
Map.Entry<K,V> |
NavigableMap.lowerEntry(K key)
返回的键值映射与最大的关键严格小于给定的键,或
null 如果没有这样的关键。
|
Map.Entry<K,V> |
TreeMap.lowerEntry(K key) |
Map.Entry<K,V> |
NavigableMap.pollFirstEntry()
删除并返回一个与该图的最小密钥相关的键值映射,或
null 如果Map是空的。
|
Map.Entry<K,V> |
TreeMap.pollFirstEntry() |
Map.Entry<K,V> |
NavigableMap.pollLastEntry()
删除并返回一个与该Map的最大密钥相关的键值映射,或
null 如果Map是空的。
|
Map.Entry<K,V> |
TreeMap.pollLastEntry() |
Modifier and Type | Method and Description |
---|---|
static <K extends Comparable<? super K>,V> |
Map.Entry.comparingByKey()
返回一个比较器,比较
Map.Entry 自然秩序的关键。
|
static <K,V> Comparator<Map.Entry<K,V>> |
Map.Entry.comparingByKey(Comparator<? super K> cmp)
返回一个比较器,比较
Map.Entry 重点使用给定的
Comparator 。
|
static <K,V extends Comparable<? super V>> |
Map.Entry.comparingByValue()
返回一个比较器,比较
Map.Entry 在自然秩序中的价值。
|
static <K,V> Comparator<Map.Entry<K,V>> |
Map.Entry.comparingByValue(Comparator<? super V> cmp)
返回一个比较器,比较
Map.Entry 利用给出的
Comparator 价值。
|
Set<Map.Entry<K,V>> |
IdentityHashMap.entrySet()
返回一个
Set 映射的视图包含在这个Map。
|
Set<Map.Entry<K,V>> |
SortedMap.entrySet()
返回一个
Set 视图的映射包含在这个Map。
|
Set<Map.Entry<K,V>> |
WeakHashMap.entrySet()
返回一个
Set 视图的映射包含在这个Map。
|
Set<Map.Entry<K,V>> |
EnumMap.entrySet()
返回一个
Set 视图的映射包含在这个Map。
|
Set<Map.Entry<K,V>> |
HashMap.entrySet()
返回一个
Set 视图的映射包含在这个Map。
|
Set<Map.Entry<K,V>> |
LinkedHashMap.entrySet()
返回一个
Set 视图的映射包含在这个Map。
|
Set<Map.Entry<K,V>> |
Hashtable.entrySet()
返回一个
Set 视图的映射包含在这个Map。
|
Set<Map.Entry<K,V>> |
TreeMap.entrySet()
返回一个
Set 映射的视图包含在这个Map。
|
abstract Set<Map.Entry<K,V>> |
AbstractMap.entrySet() |
Set<Map.Entry<K,V>> |
Map.entrySet()
返回一个
Set 视图的映射包含在这个Map。
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
LinkedHashMap.removeEldestEntry(Map.Entry<K,V> eldest)
返回
true如果这Map应该将其长子的入口。
|
Constructor and Description |
---|
SimpleEntry(Map.Entry<? extends K,? extends V> entry)
创建一个表示指定项的相同映射的条目。
|
SimpleImmutableEntry(Map.Entry<? extends K,? extends V> entry)
创建一个表示指定项的相同映射的条目。
|
Modifier and Type | Method and Description |
---|---|
Map.Entry<K,V> |
ConcurrentSkipListMap.ceilingEntry(K key)
返回的键值映射与最关键的大于或等于给定的键,或
null 如果没有这样的入口。
|
Map.Entry<K,V> |
ConcurrentSkipListMap.firstEntry()
返回一个与该图的最小密钥相关的键值映射,或
null 如果Map是空的。
|
Map.Entry<K,V> |
ConcurrentSkipListMap.floorEntry(K key)
返回的键值映射与最大的小于或等于给定的键,或
null 如果没有这样的关键。
|
Map.Entry<K,V> |
ConcurrentSkipListMap.higherEntry(K key)
返回的键值映射与最关键严格大于给定的键,或
null 如果没有这样的关键。
|
Map.Entry<K,V> |
ConcurrentSkipListMap.lastEntry()
返回一个与该Map的最大密钥相关的键值映射,或
null 如果Map是空的。
|
Map.Entry<K,V> |
ConcurrentSkipListMap.lowerEntry(K key)
返回的键值映射与最大的关键严格小于给定的键,或
null 如果没有这样的关键。
|
Map.Entry<K,V> |
ConcurrentSkipListMap.pollFirstEntry()
删除并返回一个与该图的最小密钥相关的键值映射,或
null 如果Map是空的。
|
Map.Entry<K,V> |
ConcurrentSkipListMap.pollLastEntry()
删除并返回一个与该Map的最大密钥相关的键值映射,或
null 如果Map是空的。
|
Map.Entry<K,V> |
ConcurrentHashMap.reduceEntries(long parallelismThreshold, BiFunction<Map.Entry<K,V>,Map.Entry<K,V>,? extends Map.Entry<K,V>> reducer)
返回积累所有条目使用给定的减速器结合值,或为空,如果没有的结果。
|
Modifier and Type | Method and Description |
---|---|
Set<Map.Entry<K,V>> |
ConcurrentSkipListMap.entrySet()
返回一个
Set 视图的映射包含在这个Map。
|
Set<Map.Entry<K,V>> |
ConcurrentHashMap.entrySet()
返回一个
Set 视图的映射包含在这个Map。
|
Modifier and Type | Method and Description |
---|---|
void |
ConcurrentHashMap.forEachEntry(long parallelismThreshold, Consumer<? super Map.Entry<K,V>> action)
为每个条目执行给定的操作。
|
<U> void |
ConcurrentHashMap.forEachEntry(long parallelismThreshold, Function<Map.Entry<K,V>,? extends U> transformer, Consumer<? super U> action)
对每个条目的每个非空转换执行给定的操作。
|
Map.Entry<K,V> |
ConcurrentHashMap.reduceEntries(long parallelismThreshold, BiFunction<Map.Entry<K,V>,Map.Entry<K,V>,? extends Map.Entry<K,V>> reducer)
返回积累所有条目使用给定的减速器结合值,或为空,如果没有的结果。
|
Map.Entry<K,V> |
ConcurrentHashMap.reduceEntries(long parallelismThreshold, BiFunction<Map.Entry<K,V>,Map.Entry<K,V>,? extends Map.Entry<K,V>> reducer)
返回积累所有条目使用给定的减速器结合值,或为空,如果没有的结果。
|
Map.Entry<K,V> |
ConcurrentHashMap.reduceEntries(long parallelismThreshold, BiFunction<Map.Entry<K,V>,Map.Entry<K,V>,? extends Map.Entry<K,V>> reducer)
返回积累所有条目使用给定的减速器结合值,或为空,如果没有的结果。
|
<U> U |
ConcurrentHashMap.reduceEntries(long parallelismThreshold, Function<Map.Entry<K,V>,? extends U> transformer, BiFunction<? super U,? super U,? extends U> reducer)
返回积累给定的转换所有条目使用给定的减速器结合值,或为空,如果没有的结果。
|
double |
ConcurrentHashMap.reduceEntriesToDouble(long parallelismThreshold, ToDoubleFunction<Map.Entry<K,V>> transformer, double basis, DoubleBinaryOperator reducer)
返回使用给定的减速器组合值,并给定的基础作为标识值的所有条目的给定转换的结果。
|
int |
ConcurrentHashMap.reduceEntriesToInt(long parallelismThreshold, ToIntFunction<Map.Entry<K,V>> transformer, int basis, IntBinaryOperator reducer)
返回使用给定的减速器组合值,并给定的基础作为标识值的所有条目的给定转换的结果。
|
long |
ConcurrentHashMap.reduceEntriesToLong(long parallelismThreshold, ToLongFunction<Map.Entry<K,V>> transformer, long basis, LongBinaryOperator reducer)
返回使用给定的减速器组合值,并给定的基础作为标识值的所有条目的给定转换的结果。
|
<U> U |
ConcurrentHashMap.searchEntries(long parallelismThreshold, Function<Map.Entry<K,V>,? extends U> searchFunction)
返回一个非空的结果,从应用在每个条目上的给定的搜索功能,或为空,如果没有。
|
Modifier and Type | Method and Description |
---|---|
Set<Map.Entry<Object,Object>> |
Attributes.entrySet()
返回包含在该Map中的属性名称值映射的集合视图。
|
Modifier and Type | Method and Description |
---|---|
Set<Map.Entry<Object,Object>> |
TabularDataSupport.entrySet()
返回一个行映射包含在本
TabularDataSupport 实例的索引集合视图。
|
Modifier and Type | Method and Description |
---|---|
Set<Map.Entry<String,Object>> |
SimpleBindings.entrySet()
返回一个
Set 视图的映射包含在这个Map。
|
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.