de.digitalcollections.solrocr.iter.BreakLocator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of solr-ocrhighlighting Show documentation
Show all versions of solr-ocrhighlighting Show documentation
Solr plugin to add support for highlighting directly from various OCR formats (hOCR/ALTO/MiniOCR)
without having to store the OCR documents in the index.
The newest version!
package de.digitalcollections.solrocr.iter;
public interface BreakLocator {
int DONE = -1;
int following(int offset);
int preceding(int offset);
IterableCharSequence getText();
}