de.l3s.boilerpipe.BoilerpipeDocumentSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webcontent-grabber Show documentation
Show all versions of webcontent-grabber Show documentation
A java client library to grab the webcontent
The newest version!
package de.l3s.boilerpipe;
import de.l3s.boilerpipe.document.TextDocument;
/**
* Something that can be represented as a {@link TextDocument}.
*/
public interface BoilerpipeDocumentSource {
TextDocument toTextDocument() throws BoilerpipeProcessingException;
}