static class SearchBasedRowFilter.OneKeyValue extends Object implements Tagged
Modifier and Type | Field and Description |
---|---|
private String |
key |
private String |
value |
Constructor and Description |
---|
OneKeyValue(String key,
String value) |
Modifier and Type | Method and Description |
---|---|
String |
get(String k)
Replies the value of the given key; null, if there is no value for this key
|
Map<String,String> |
getKeys()
Replies the map of key/value pairs.
|
boolean |
hasKeys()
Replies true, if there is at least one key/value pair; false, otherwise
|
Collection<String> |
keySet()
Replies the set of keys
|
void |
put(String key,
String value)
Sets a key/value pairs
|
void |
remove(String key)
Removes a given key/value pair
|
void |
removeAll()
Removes all tags
|
void |
setKeys(Map<String,String> keys)
Sets the map of key/value pairs
|
OneKeyValue(String key, String value)
public void setKeys(Map<String,String> keys)
Tagged
public Map<String,String> getKeys()
Tagged
public void put(String key, String value)
Tagged
public String get(String k)
Tagged
public void remove(String key)
Tagged
public boolean hasKeys()
Tagged
public Collection<String> keySet()
Tagged