public class StringMap<T> extends Object implements Map<String,T>
Constructor and Description |
---|
StringMap() |
StringMap(boolean caseSensitive) |
StringMap(Map<? extends String,? extends T> map,
boolean caseSensitive) |
Modifier and Type | Method and Description |
---|---|
void |
clear() |
boolean |
containsKey(Object arg0) |
boolean |
containsValue(Object arg0) |
Set<Map.Entry<String,T>> |
entrySet() |
T |
get(Object arg0) |
boolean |
isCaseSensitive() |
boolean |
isEmpty() |
Set<String> |
keySet() |
T |
put(String key,
T value) |
void |
putAll(Map<? extends String,? extends T> map) |
T |
remove(Object arg0) |
void |
setCaseSensitive(boolean b) |
int |
size() |
String |
toString() |
Collection<T> |
values() |
public boolean isCaseSensitive()
public void setCaseSensitive(boolean b)
public boolean containsKey(Object arg0)
containsKey
in interface Map<String,T>
public boolean containsValue(Object arg0)
containsValue
in interface Map<String,T>
Copyright © 2006-2015 The Apache Software Foundation. All Rights Reserved.