kotlin.Function
kotlin.Function1
public final class MapParser<K extends Object, V extends Object> implements Function1<String, Map<K, V>>
Parses a map from a string. the keyParser parses keys and the valueParser pareses values.
Example property:
your_prop=bar:1,foo:2
MapParser(Function1<String, K> keyParser, Function1<String, V> valueParser)
Map<K, V>
invoke(String value)
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Map<K, V> invoke(String value)