NewPipeExtractor/extractor/src/main/java/org/schabi/newpipe/extractor/InfoItemExtractor.java

14 lines
362 B
Java

package org.schabi.newpipe.extractor;
import org.schabi.newpipe.extractor.exceptions.ParsingException;
import javax.annotation.Nonnull;
import java.util.List;
public interface InfoItemExtractor {
String getName() throws ParsingException;
String getUrl() throws ParsingException;
@Nonnull
List<Image> getThumbnails() throws ParsingException;
}