package org.schabi.newpipe.extractor.playlist; import org.schabi.newpipe.extractor.ListExtractor; import org.schabi.newpipe.extractor.StreamingService; import org.schabi.newpipe.extractor.exceptions.ParsingException; import org.schabi.newpipe.extractor.linkhandler.ListLinkHandler; import org.schabi.newpipe.extractor.stream.StreamInfoItem; public abstract class PlaylistExtractor extends ListExtractor { public PlaylistExtractor(StreamingService service, ListLinkHandler linkHandler) { super(service, linkHandler); } public abstract String getThumbnailUrl() throws ParsingException; public abstract String getBannerUrl() throws ParsingException; public abstract String getUploaderUrl() throws ParsingException; public abstract String getUploaderName() throws ParsingException; public abstract String getUploaderAvatarUrl() throws ParsingException; public abstract long getStreamCount() throws ParsingException; }