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 Details

    • 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)