
it.unitn.disi.smatch.data.matrices.IIndexedObject 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.smatch.data.matrices;
/**
* Objects which could be referenced by index. Used to store relations in the matrices.
*
* @author Aliaksandr Autayeu
*/
public interface IIndexedObject {
/**
* Gets the index of the node in the matrix.
*
* @return the index of the node in the matrix.
*/
int getIndex();
/**
* Sets the index of the node in the matrix.
*
* @param index index
*/
void setIndex(int index);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy