Constructor and Description |
---|
FieldMapView() |
Modifier and Type | Method and Description |
---|---|
void |
clear() |
boolean |
containsKey(Object key)
Linear search.
|
boolean |
containsValue(Object value)
Linear search.
|
Set<Map.Entry<String,String>> |
entrySet() |
String |
get(Object key)
Linear search.
|
boolean |
isEmpty() |
Set<String> |
keySet() |
String |
put(String key,
String value) |
void |
putAll(Map<? extends String,? extends String> m) |
String |
remove(Object key) |
int |
size() |
Collection<String> |
values() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
public boolean containsKey(Object key)
containsKey
in interface Map<String,String>
key
- A String
. Can be null. Tests for field names with Object.equals(Object)
.public boolean containsValue(Object value)
containsValue
in interface Map<String,String>
value
- A String
. Can be null. Tests for field values with Object.equals(Object)
.public String put(String key, String value)
put
in interface Map<String,String>
UnsupportedOperationException
public String remove(Object key)
remove
in interface Map<String,String>
UnsupportedOperationException
public void putAll(Map<? extends String,? extends String> m)
putAll
in interface Map<String,String>
UnsupportedOperationException
public void clear()
clear
in interface Map<String,String>
UnsupportedOperationException
public Collection<String> values()
Copyright © 2015–2021 Fiji. All rights reserved.