- Type Parameters:
T- type of the java object to parse to.
public interface CharScannerParser<T>
Interface of a parser the can
parse a Java object from a string
representation.- Since:
- 1.0.0
-
Method Summary
-
Method Details
-
parse
- Parameters:
data- thestring representationto parse.- Returns:
- the parsed data as Java object.
-
parse
- Parameters:
reader- theReaderwith thestring representationto parse.- Returns:
- the parsed data as Java object.
-
parse
- Parameters:
scanner- theCharStreamScannerwith thestring representationto parse.- Returns:
- the parsed data as Java object.
-