Uses of Interface
java.util.Map.Entry
-
Packages that use Map.Entry 软件包 描述 com.sun.net.httpserver 提供一个简单的高级Http服务器API,可用于构建嵌入式HTTP服务器。java.awt 包含用于创建用户界面和绘制图形和图像的所有类。java.security 提供安全框架的类和接口。java.util 包含集合框架,一些国际化支持类,一个服务加载器,属性,随机数生成,字符串解析和扫描类,base64编码和解码,一个位数组和几个其他实用程序类。java.util.concurrent 实用程序类通常用于并发编程。java.util.jar 提供用于读取和写入JAR(Java ARchive)文件格式的类,该文件格式基于具有可选清单文件的标准ZIP文件格式。javafx.beans.binding 提供创建和操作的类,用于计算取决于一个或多个来源的值的Binding
。javax.management.openmbean 提供打开的数据类型和Open MBean描述符类。javax.script 脚本API由定义Java脚本引擎的接口和类组成,并为Java应用程序中的使用提供了框架。javax.xml.crypto.dom 针对javax.xml.crypto
包的DOM特定类。jdk.incubator.http 高级HTTP和WebSocket APIjdk.nashorn.api.scripting 这个包提供了javax.script
集成,这是使用Nashorn的首选方式。 -
-
Uses of Map.Entry in com.sun.net.httpserver
Methods in com.sun.net.httpserver that return types with arguments of type Map.Entry Modifier and Type 方法 描述 Set<Map.Entry<String,List<String>>>
Headers. entrySet()
-
Uses of Map.Entry in java.awt
Methods in java.awt that return types with arguments of type Map.Entry Modifier and Type 方法 描述 Set<Map.Entry<Object,Object>>
RenderingHints. entrySet()
返回Set
视图包含在此映射的RenderingHints
。 -
Uses of Map.Entry in java.security
Methods in java.security that return types with arguments of type Map.Entry Modifier and Type 方法 描述 Set<Map.Entry<Object,Object>>
Provider. entrySet()
返回此提供程序中包含的属性条目的不可修改的Set视图。 -
Uses of Map.Entry in java.util
Classes in java.util that implement Map.Entry Modifier and Type Class 描述 static class
AbstractMap.SimpleEntry<K,V>
保存密钥和值的条目。static class
AbstractMap.SimpleImmutableEntry<K,V>
保持一个不变的钥匙和价值的条目。Methods in java.util that return Map.Entry Modifier and Type 方法 描述 Map.Entry<K,V>
NavigableMap. ceilingEntry(K key)
返回与大于或等于给定键的最小键相关联的键值映射,如果没有这样的键,则null
。Map.Entry<K,V>
TreeMap. ceilingEntry(K key)
static <K,V> Map.Entry<K,V>
Map. entry(K k, V v)
返回包含给定键和值的不可变的Map.Entry
。Map.Entry<K,V>
NavigableMap. firstEntry()
返回与该地图中的最小键相关联的键值映射,如果地图为空,则null
。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()
返回与该地图中最大键相关联的键值映射,如果地图为空,则null
。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.Entry<K,V>
TreeMap. pollFirstEntry()
Map.Entry<K,V>
NavigableMap. pollLastEntry()
删除并返回与该地图中最大关键字关联的键值映射,如果地图为空,则null
。Map.Entry<K,V>
TreeMap. pollLastEntry()
Methods in java.util that return types with arguments of type Map.Entry Modifier and Type 方法 描述 static <K extends Comparable<? super K>,V>
Comparator<Map.Entry<K,V>>Map.Entry. comparingByKey()
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>>
Comparator<Map.Entry<K,V>>Map.Entry. comparingByValue()
返回一个比较值,比较Map.Entry
的自然顺序值。static <K,V> Comparator<Map.Entry<K,V>>
Map.Entry. comparingByValue(Comparator<? super V> cmp)
返回一个比较器,使用给定的Comparator
将值与Map.Entry
进行比较。abstract Set<Map.Entry<K,V>>
AbstractMap. entrySet()
Set<Map.Entry<K,V>>
EnumMap. entrySet()
返回此地图中包含的映射的Set
视图。Set<Map.Entry<K,V>>
HashMap. entrySet()
返回此地图中包含的映射的Set
视图。Set<Map.Entry<K,V>>
Hashtable. entrySet()
返回此地图中包含的映射的Set
视图。Set<Map.Entry<K,V>>
IdentityHashMap. entrySet()
返回此地图中包含的映射的Set
视图。Set<Map.Entry<K,V>>
LinkedHashMap. entrySet()
返回此地图中包含的映射的Set
视图。Set<Map.Entry<K,V>>
Map. entrySet()
返回此地图中包含的映射的Set
视图。Set<Map.Entry<Object,Object>>
Properties. entrySet()
Set<Map.Entry<K,V>>
SortedMap. entrySet()
返回此地图中包含的映射的Set
视图。Set<Map.Entry<K,V>>
TreeMap. entrySet()
返回此地图中包含的映射的Set
视图。Set<Map.Entry<K,V>>
WeakHashMap. entrySet()
返回此地图中包含的映射的Set
视图。Methods in java.util with parameters of type Map.Entry Modifier and Type 方法 描述 static <K,V> Map<K,V>
Map. ofEntries(Map.Entry<? extends K,? extends V>... entries)
返回包含从给定条目提取的键和值的不可变地图。protected boolean
LinkedHashMap. removeEldestEntry(Map.Entry<K,V> eldest)
如果此地图应删除其最老的条目,则返回true
。Constructors in java.util with parameters of type Map.Entry Constructor 描述 SimpleEntry(Map.Entry<? extends K,? extends V> entry)
创建表示与指定条目相同的映射的条目。SimpleImmutableEntry(Map.Entry<? extends K,? extends V> entry)
创建表示与指定条目相同的映射的条目。 -
Uses of Map.Entry in java.util.concurrent
Methods in java.util.concurrent that return Map.Entry Modifier and Type 方法 描述 Map.Entry<K,V>
ConcurrentSkipListMap. ceilingEntry(K key)
返回与大于或等于给定键的最小键相关联的键值映射,如果没有null
则null
。Map.Entry<K,V>
ConcurrentSkipListMap. firstEntry()
返回与该地图中的最小键相关联的键值映射,如果地图为空,则null
。Map.Entry<K,V>
ConcurrentSkipListMap. floorEntry(K key)
返回与小于或等于给定键的最大键相关联的键值映射,如果没有这样的键,则null
。Map.Entry<K,V>
ConcurrentSkipListMap. higherEntry(K key)
返回与最小密钥相关联的密钥值映射严格大于给定密钥,如果不存在这样的密钥,则null
。Map.Entry<K,V>
ConcurrentSkipListMap. lastEntry()
返回与该地图中最大键相关联的键值映射,如果地图为空,则null
。Map.Entry<K,V>
ConcurrentSkipListMap. lowerEntry(K key)
返回与最大密钥相关联的密钥值映射严格小于给定密钥,如果没有这样的密钥则null
。Map.Entry<K,V>
ConcurrentSkipListMap. pollFirstEntry()
删除并返回与该地图中的最小键相关联的键值映射,如果地图为空,则null
。Map.Entry<K,V>
ConcurrentSkipListMap. pollLastEntry()
删除并返回与该地图中最大键相关联的键值映射,如果地图为空,则null
。Map.Entry<K,V>
ConcurrentHashMap. reduceEntries(long parallelismThreshold, BiFunction<Map.Entry<K,V>,Map.Entry<K,V>,? extends Map.Entry<K,V>> reducer)
返回使用给定的reducer累加所有条目的结果,以组合值,如果没有则返回null。Methods in java.util.concurrent that return types with arguments of type Map.Entry Modifier and Type 方法 描述 Set<Map.Entry<K,V>>
ConcurrentHashMap. entrySet()
返回此地图中包含的映射的Set
视图。Set<Map.Entry<K,V>>
ConcurrentSkipListMap. entrySet()
返回此地图中包含的映射的Set
视图。Method parameters in java.util.concurrent with type arguments of type Map.Entry Modifier and Type 方法 描述 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)
返回使用给定的reducer累加所有条目的结果,以组合值,如果没有则返回null。Map.Entry<K,V>
ConcurrentHashMap. reduceEntries(long parallelismThreshold, BiFunction<Map.Entry<K,V>,Map.Entry<K,V>,? extends Map.Entry<K,V>> reducer)
返回使用给定的reducer累加所有条目的结果,以组合值,如果没有则返回null。Map.Entry<K,V>
ConcurrentHashMap. reduceEntries(long parallelismThreshold, BiFunction<Map.Entry<K,V>,Map.Entry<K,V>,? extends Map.Entry<K,V>> reducer)
返回使用给定的reducer累加所有条目的结果,以组合值,如果没有则返回null。<U> U
ConcurrentHashMap. reduceEntries(long parallelismThreshold, Function<Map.Entry<K,V>,? extends U> transformer, BiFunction<? super U,? super U,? extends U> reducer)
返回使用给定的reducer将所有条目的给定变换累加到组合值的结果,否则返回null。double
ConcurrentHashMap. reduceEntriesToDouble(long parallelismThreshold, ToDoubleFunction<Map.Entry<K,V>> transformer, double basis, DoubleBinaryOperator reducer)
返回使用给定的reducer累加给定变换的结果,以组合值,给定基础作为一个标识值。int
ConcurrentHashMap. reduceEntriesToInt(long parallelismThreshold, ToIntFunction<Map.Entry<K,V>> transformer, int basis, IntBinaryOperator reducer)
返回使用给定的reducer累加给定变换的结果,以组合值,给定基础作为一个标识值。long
ConcurrentHashMap. reduceEntriesToLong(long parallelismThreshold, ToLongFunction<Map.Entry<K,V>> transformer, long basis, LongBinaryOperator reducer)
返回使用给定的reducer累加给定变换的结果,以组合值,给定基础作为一个标识值。<U> U
ConcurrentHashMap. searchEntries(long parallelismThreshold, Function<Map.Entry<K,V>,? extends U> searchFunction)
返回一个非空结果,从每个条目应用给定的搜索函数,如果没有,则返回null。 -
Uses of Map.Entry in java.util.jar
Methods in java.util.jar that return types with arguments of type Map.Entry Modifier and Type 方法 描述 Set<Map.Entry<Object,Object>>
Attributes. entrySet()
返回此Map中包含的属性名称 - 值映射的集合视图。 -
Uses of Map.Entry in javafx.beans.binding
Methods in javafx.beans.binding that return types with arguments of type Map.Entry Modifier and Type 方法 描述 Set<Map.Entry<K,V>>
MapExpression. entrySet()
-
Uses of Map.Entry in javax.management.openmbean
Methods in javax.management.openmbean that return types with arguments of type Map.Entry Modifier and Type 方法 描述 Set<Map.Entry<Object,Object>>
TabularDataSupport. entrySet()
返回此TabularDataSupport
实例中包含的行映射索引的集合视图。 -
Uses of Map.Entry in javax.script
Methods in javax.script that return types with arguments of type Map.Entry Modifier and Type 方法 描述 Set<Map.Entry<String,Object>>
SimpleBindings. entrySet()
返回此地图中包含的映射的Set
视图。 -
Uses of Map.Entry in javax.xml.crypto.dom
Methods in javax.xml.crypto.dom that return types with arguments of type Map.Entry Modifier and Type 方法 描述 Iterator<Map.Entry<String,Element>>
DOMCryptoContext. iterator()
Returns a read-only iterator over the set of Id/Element mappings of thisDOMCryptoContext
. -
Uses of Map.Entry in jdk.incubator.http
Methods in jdk.incubator.http that return types with arguments of type Map.Entry Modifier and Type 方法 描述 Set<Map.Entry<HttpRequest,CompletableFuture<HttpResponse<V>>>>
MultiMapResult. entrySet()
-
Uses of Map.Entry in jdk.nashorn.api.scripting
Methods in jdk.nashorn.api.scripting that return types with arguments of type Map.Entry Modifier and Type 方法 描述 Set<Map.Entry<String,Object>>
ScriptObjectMirror. entrySet()
-