Interface FontParser
-
- 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 FontParser
Parse a file to retrieve font definitions.- Author:
- Grégory Van den Borre
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<FontDefinition>parse(Path file)Parse a file and extract data to get FontDefinition.
-
-
-
Method Detail
-
parse
List<FontDefinition> parse(Path file)
Parse a file and extract data to get FontDefinition.- Parameters:
file- File to parse.- Returns:
- A list containing Extracted data.
-
-