Uses of Class
org.jboss.msc.value.MapEntry
-
Packages that use MapEntry Package Description org.jboss.msc.value Classes which implement various indirect value types. -
-
Uses of MapEntry in org.jboss.msc.value
Fields in org.jboss.msc.value declared as MapEntry Modifier and Type Field Description private MapEntry<Value<K>,Value<V>>
MapEntryValue. entry
Fields in org.jboss.msc.value with type parameters of type MapEntry Modifier and Type Field Description private java.util.List<MapEntry<? extends Value<? extends K>,? extends Value<? extends V>>>
MapValue. values
Methods in org.jboss.msc.value that return MapEntry Modifier and Type Method Description static <K,V>
MapEntry<K,V>MapEntry. entry(K key, V value)
Construct a new instance.MapEntry<K,V>
MapEntryValue. getValue()
Get the actual value.Methods in org.jboss.msc.value that return types with arguments of type MapEntry Modifier and Type Method Description static <K,V>
Value<MapEntry<K,V>>MapEntryValue. of(Value<K> key, Value<V> value)
Construct a new instance.Methods in org.jboss.msc.value with parameters of type MapEntry Modifier and Type Method Description static <K,V>
java.util.Map<K,V>MapEntry. addTo(java.util.Map<K,V> map, MapEntry<? extends K,? extends V>... entries)
Add entries to a map.boolean
MapEntry. equals(MapEntry<?,?> obj)
Compare this entry with another.Constructors in org.jboss.msc.value with parameters of type MapEntry Constructor Description MapEntryValue(MapEntry<Value<K>,Value<V>> entry)
Construct a new instance.MapValue(Value<? extends java.util.Map<K,V>> mapValue, MapEntry<? extends Value<? extends K>,? extends Value<? extends V>>... values)
Construct a new instance.Constructor parameters in org.jboss.msc.value with type arguments of type MapEntry Constructor Description MapValue(Value<? extends java.util.Map<K,V>> mapValue, java.util.List<MapEntry<? extends Value<? extends K>,? extends Value<? extends V>>> values)
Construct a new instance.
-