Searched defs:Map (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/sql/
H A DSQLClientInfoException.java21 import java.util.Map;
30 final private Map<String, ClientInfoStatus> failedProperties;
43 * Code is set to 0, and the Map<String,ClientInfoStatus> object is set to
47 * the Map<String,ClientInfoStatus> object to use as the
50 public SQLClientInfoException(Map<String, ClientInfoStatus> failedProperties) {
57 * Throwable object is set to the given cause Throwable object, and the Map<String,ClientInfoStatus>
61 * the Map<String,ClientInfoStatus> object to use as the
68 Map<String, ClientInfoStatus> failedProperties, Throwable cause) {
75 * reason, and the Map<String,ClientInfoStatus> object is set to the failed
81 * the Map<Strin
67 SQLClientInfoException( Map<String, ClientInfoStatus> failedProperties, Throwable cause) argument
[all...]
/libcore/luni/src/main/java/java/util/
H A DMap.java22 * A {@code Map} is a data structure consisting of a set of keys and values
24 * used as keys is declared when the {@code Map} is declared, as is the
27 * A {@code Map} provides helper methods to iterate through all of the
31 public interface Map<K,V> { interface
34 * {@code Map.Entry} is a key/value mapping contained in a {@code Map}.
38 * Compares the specified object to this {@code Map.Entry} and returns if they
39 * are equal. To be equal, the object must be an instance of {@code Map.Entry} and have the
45 * {@code Map.Entry}, {@code false} otherwise.
85 * Removes all elements from this {@code Map}, leavin
[all...]
H A DCollections.java181 * An empty immutable instance of {@link Map}.
184 public static final Map EMPTY_MAP = new EmptyMap();
322 @Override public Set<Map.Entry<K, V>> entrySet() {
323 return new AbstractSet<Map.Entry<K, V>>() {
325 if (object instanceof Map.Entry) {
326 Map.Entry<?, ?> entry = (Map.Entry<?, ?>) object;
337 @Override public Iterator<Map.Entry<K, V>> iterator() {
338 return new Iterator<Map.Entry<K, V>>() {
345 @Override public Map
2686 SetFromMap(final Map<E, Boolean> map) argument
3278 addAll(Collection<? extends Map.Entry<K, V>> c) argument
[all...]

Completed in 468 milliseconds