Interface StringParser<T>

Type Parameters:
T - The class that this StringParser turns strings into.
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface StringParser<T>
A class that represents a function that parses a String into another object. See parse(String)