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