Package org.ini4j
Interface MultiMap<K,V>
-
- All Superinterfaces:
Map<K,V>
- All Known Subinterfaces:
OptionMap,Profile,Profile.Section,Registry,Registry.Key
- All Known Implementing Classes:
BasicMultiMap,BasicOptionMap,BasicProfile,BasicRegistry,CommonMultiMap,Ini,Options,Reg,Wini
public interface MultiMap<K,V> extends Map<K,V>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidadd(K key, V value)voidadd(K key, V value, int index)Vget(Object key, int index)List<V>getAll(Object key)intlength(Object key)Vput(K key, V value, int index)List<V>putAll(K key, List<V> values)Vremove(Object key, int index)
-