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

org.semanticweb.owlapi.model.HasIndex Maven / Gradle / Ivy

There is a newer version: 5.5.1
Show newest version
package org.semanticweb.owlapi.model;

/**
 * Interface for types with an index; this is used to group objects by type when
 * sorting.
 */
@FunctionalInterface
public interface HasIndex {

    /**
     * @return index for this type. This is not a hashcode for instances, rather
     *         a sorting index for the types.
     */
    int typeIndex();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy