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


Nested Class Summary
static class Deserializer.DeserializeException
          An exception occurring during deserialization
 
Method Summary
 List<V> deserialize(String values)
          Deserializes the given string into a list of values
 

Method Detail

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