Package com.tagtraum.audiokern
Class PlayListFile
- java.lang.Object
-
- com.tagtraum.audiokern.PlayListFile
-
public class PlayListFile extends Object
PlayList file supports reading of certain playlist file formats. Currently implemented arem3u
,m3u8
,pls
, andcrate
.- Author:
- Hendrik Schreiber
-
-
Constructor Summary
Constructors Constructor Description PlayListFile()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description AudioSong
get(int index)
static PlayListFile
get(URL url)
String
getName()
PlayListIterator<AudioSong>
listIterator(int startIndex)
int
size()
-
-
-
Method Detail
-
get
public static PlayListFile get(URL url) throws IOException
- Throws:
IOException
-
get
public AudioSong get(int index)
-
size
public int size()
-
getName
public String getName()
-
listIterator
public PlayListIterator<AudioSong> listIterator(int startIndex)
-
-