-
- All Implemented Interfaces:
-
io.requery.Converter
public class MapConverter<K extends Serializable, V extends Serializable> implements Converter<Map<K, V>, String>
Provides a Converter that can be used persist and read java.util.Map objects.
-
-
Method Summary
Modifier and Type Method Description Class<Map<K, V>>
getMappedType()
Class<String>
getPersistedType()
Integer
getPersistedSize()
String
convertToPersisted(Map<K, V> value)
Map<K, V>
convertToMapped(Class<out Map<K, V>> type, String value)
-
-
Method Detail
-
getMappedType
Class<Map<K, V>> getMappedType()
-
getPersistedType
Class<String> getPersistedType()
-
getPersistedSize
Integer getPersistedSize()
-
convertToPersisted
String convertToPersisted(Map<K, V> value)
-
-
-
-