Package | Description |
---|---|
java.net | |
java.security | |
java.sql | |
java.text | |
java.util | |
java.util.jar | |
org.apache.harmony.luni.util |
Modifier and Type | Method and Description |
---|---|
Map |
URLConnection.getHeaderFields()
Gets an unchangeable map of the response-header fields and values.
|
Map |
URLConnection.getRequestProperties()
Gets an unchangeable map of general request properties used by this
connection.
|
Modifier and Type | Class and Description |
---|---|
class |
Provider
Provider is the abstract superclass for all security providers in the
Java security infrastructure. |
Modifier and Type | Method and Description |
---|---|
static Provider[] |
Security.getProviders(Map map) |
void |
Provider.putAll(Map t)
Copies all from the provided map to this
Provider . |
Modifier and Type | Method and Description |
---|---|
Map |
Connection.getTypeMap() |
Modifier and Type | Method and Description |
---|---|
Object |
Array.getArray(long index,
int count,
Map map) |
Object |
Array.getArray(Map map) |
Object[] |
Struct.getAttributes(Map map) |
Object |
CallableStatement.getObject(int i,
Map map) |
Object |
ResultSet.getObject(int i,
Map map) |
Object |
ResultSet.getObject(String colName,
Map map) |
ResultSet |
Array.getResultSet(long index,
int count,
Map map) |
ResultSet |
Array.getResultSet(Map map) |
void |
Connection.setTypeMap(Map map) |
Modifier and Type | Method and Description |
---|---|
Map |
AttributedCharacterIterator.getAttributes() |
Modifier and Type | Method and Description |
---|---|
void |
AttributedString.addAttributes(Map attributes,
int start,
int end)
Applies a given set of attributes to the given range of the string.
|
Constructor and Description |
---|
AttributedString(String value,
Map attributes)
Creates an
AttributedString from the given text and the
attributes. |
Modifier and Type | Interface and Description |
---|---|
interface |
SortedMap |
Modifier and Type | Class and Description |
---|---|
class |
AbstractMap
This class is an abstract implementation of the
Map interface. |
class |
HashMap
HashMap is an implementation of Map.
|
class |
Hashtable
Hashtable associates keys with values.
|
class |
IdentityHashMap
IdentityHashMap is a variant on HashMap which tests equality by reference
instead of equality by value.
|
class |
LinkedHashMap
LinkedHashMap is a variant of HashMap.
|
class |
Properties |
class |
TreeMap
Implentation of a SortedMap based on tree-structure.
|
class |
WeakHashMap |
Modifier and Type | Field and Description |
---|---|
static Map |
Collections.EMPTY_MAP
An empty immutable instance of
Map . |
Modifier and Type | Method and Description |
---|---|
static Map |
Collections.singletonMap(Object key,
Object value)
Returns a Map containing the specified key and value.
|
static Map |
Collections.synchronizedMap(Map map)
Returns a wrapper on the specified map which synchronizes all access to
the map.
|
static Map |
Collections.unmodifiableMap(Map map)
Returns a wrapper on the specified map which throws an
UnsupportedOperationException whenever an attempt is made to
modify the map. |
Modifier and Type | Method and Description |
---|---|
void |
AbstractMap.putAll(Map map)
Copies every mapping in the specified map to this map.
|
void |
HashMap.putAll(Map map)
Copies all the mappings in the specified map to this map.
|
void |
Hashtable.putAll(Map map)
Copies every mapping to this
Hashtable from the specified map. |
void |
IdentityHashMap.putAll(Map map)
Copies all the mappings in the specified map to this map.
|
void |
Map.putAll(Map t) |
void |
TreeMap.putAll(Map m) |
static Map |
Collections.synchronizedMap(Map map)
Returns a wrapper on the specified map which synchronizes all access to
the map.
|
static Map |
Collections.unmodifiableMap(Map map)
Returns a wrapper on the specified map which throws an
UnsupportedOperationException whenever an attempt is made to
modify the map. |
Constructor and Description |
---|
HashMap(Map map)
Constructs a new
HashMap instance containing the mappings from
the specified map. |
Hashtable(Map map)
Constructs a new instance of
Hashtable containing the mappings
from the specified map. |
IdentityHashMap(Map map)
Creates an IdentityHashMap using the given map as initial values.
|
LinkedHashMap(Map m)
Constructs a new
LinkedHashMap instance containing the mappings
from the specified map. |
TreeMap(Map m) |
WeakHashMap(Map map) |
Modifier and Type | Class and Description |
---|---|
class |
Attributes
The Attributes class is used to store values for Manifest entries.
|
Modifier and Type | Field and Description |
---|---|
protected Map |
Attributes.map |
Modifier and Type | Method and Description |
---|---|
Map |
Manifest.getEntries()
Returns a Map containing the Attributes for each entry in the Manifest.
|
Modifier and Type | Method and Description |
---|---|
void |
Attributes.putAll(Map attrib)
Store all the key.value pairs in the argument in this Attributes.
|
Modifier and Type | Class and Description |
---|---|
class |
TwoKeyHashMap
Reductive hash with two keys
|