com.antkorwin.pdfinder.find.MatchTokenStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pdfinder Show documentation
Show all versions of pdfinder Show documentation
Find text position in PDF files
package com.antkorwin.pdfinder.find;
import com.antkorwin.pdfinder.TextToken;
public interface MatchTokenStrategy {
boolean matchToken(TextToken token, String searchString);
}