org.ini4j
Interface MultiMap<K,V>
- All Superinterfaces:
- java.util.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 java.util.Map<K,V>
Nested classes/interfaces inherited from interface java.util.Map |
java.util.Map.Entry<K,V> |
Method Summary |
void |
add(K key,
V value)
|
void |
add(K key,
V value,
int index)
|
V |
get(java.lang.Object key,
int index)
|
java.util.List<V> |
getAll(java.lang.Object key)
|
int |
length(java.lang.Object key)
|
V |
put(K key,
V value,
int index)
|
java.util.List<V> |
putAll(K key,
java.util.List<V> values)
|
V |
remove(java.lang.Object key,
int index)
|
Methods inherited from interface java.util.Map |
clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keySet, put, putAll, remove, size, values |
getAll
java.util.List<V> getAll(java.lang.Object key)
add
void add(K key,
V value)
add
void add(K key,
V value,
int index)
get
V get(java.lang.Object key,
int index)
length
int length(java.lang.Object key)
put
V put(K key,
V value,
int index)
putAll
java.util.List<V> putAll(K key,
java.util.List<V> values)
remove
V remove(java.lang.Object key,
int index)
Copyright © 2011. All Rights Reserved.