All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.digitalcollections.solrocr.iter.BreakLocator Maven / Gradle / Ivy

Go to download

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy