org.ini4j
Interface MultiMap<K,V>
- All Superinterfaces:
- Map<K,V>
- All Known Subinterfaces:
- OptionMap
- All Known Implementing Classes:
- ConfigParser.PyIni, Ini, Ini.Section, MultiMapImpl, OptionMapImpl, Options
public interface MultiMap<K,V>
- extends Map<K,V>
Methods inherited from interface Map |
clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keySet, put, putAll, remove, size, values |
getAll
List<V> getAll(Object key)
add
void add(K key,
V value)
add
void add(K key,
V value,
int index)
get
V get(Object key,
int index)
length
int length(Object key)
put
V put(K key,
V value,
int index)
putAll
List<V> putAll(K key,
List<V> values)
remove
V remove(Object key,
int index)