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

it.uniroma2.art.maple.scenario.SingleResourceMatchingProblem Maven / Gradle / Ivy

The newest version!
package it.uniroma2.art.maple.scenario;

import java.util.List;

import org.apache.commons.lang3.tuple.Pair;
import org.eclipse.rdf4j.model.IRI;

import it.uniroma2.art.lime.profiler.LexicalizationSetStatistics;

/**
 * The problem of matching an individual resource against a target dataset.
 * 
 * @author Manuel Fiorelli
 */
public class SingleResourceMatchingProblem {

	private IRI sourceResource;
	private IRI targetDataset;
	private List> pairedLexicalizationSets;

	public SingleResourceMatchingProblem(IRI sourceResource, IRI targetDataset,
			List> pairedLexicalizationSets) {
		this.sourceResource = sourceResource;
		this.targetDataset = targetDataset;
		this.pairedLexicalizationSets = pairedLexicalizationSets;
	}

	public IRI getSourceResource() {
		return sourceResource;
	}

	public IRI getTargetDataset() {
		return targetDataset;
	}

	public List> getPairedLexicalizationSets() {
		return pairedLexicalizationSets;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy