org.opensextant.output.MatchInterpreter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opensextant-xponents-core Show documentation
Show all versions of opensextant-xponents-core Show documentation
An information extraction toolkit focused on geography and temporal entities
package org.opensextant.output;
import org.opensextant.data.Geocoding;
import org.opensextant.extraction.TextMatch;
public interface MatchInterpreter {
/**
* For a given match in text return the geocoding object
* for that match, if one exists.
*
* @param m TextMatch -- which may or may not be geographic in nature.
* @return
*/
Geocoding getGeocoding(TextMatch m);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy