-
- Type Parameters:
T
- type of the handled type to parse.
- All Known Implementing Classes:
InstantParser
,LongParser
,TemporalParser
,UuidParser
public interface FromStringParser<T>
- Since:
- 1.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
parse(String string)
Parses the givenString
to the type handled by this parser but efficiently returnsnull
if the syntax does not match.
-