org.jminor.common.model
Interface Deserializer<V>
- Type Parameters:
V
- the type of values being deserialized
public interface Deserializer<V>
Deserializes a string into a list of values
deserialize
List<V> deserialize(String values)
throws Deserializer.DeserializeException
- Deserializes the given string into a list of values
- Parameters:
values
- the string representing the values
- Returns:
- a list containing the values in the same order they appear in the string
- Throws:
Deserializer.DeserializeException
- in case of an exception