
it.unitn.disi.nlptools.ILabelPipeline Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of s-match Show documentation
Show all versions of s-match Show documentation
A version of S-Match semantic matching framework for Open Data
The newest version!
package it.unitn.disi.nlptools;
import it.unitn.disi.common.pipelines.IBasePipeline;
import it.unitn.disi.nlptools.components.PipelineComponentException;
import it.unitn.disi.nlptools.data.ILabel;
/**
* Interface for short label processing pipelines.
*
* @author Aliaksandr Autayeu
*/
public interface ILabelPipeline extends IBasePipeline {
/**
* Processes a short label.
*
* @param label short label to process
* @return interface to a processed label instance
* @throws it.unitn.disi.nlptools.components.PipelineComponentException
* PipelineComponentException
*/
ILabel process(String label) throws PipelineComponentException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy