Package com.github.zafarkhaja.semver
Interface Parser<T>
-
- Type Parameters:
T
- the type of parser's output
- All Known Implementing Classes:
ExpressionParser
public interface Parser<T>
A parser interface.- Since:
- 0.7.0
- Author:
- Zafar Khaja
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
parse(String input)
Parses the input string.
-