Interface ParseFunction<T>
- Type Parameters:
T- The type of result
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A function that parses an input string.
-
Method Summary
-
Method Details
-
parse
Parses an input string.- Parameters:
input- The input string to parse- Returns:
- The parsed value, or
nullif the parsing failed.
-
parseInt
-
parseFloat
-
parseBoolean
-