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

au.csiro.ontology.model.Role Maven / Gradle / Ivy

The newest version!
/**
 * Copyright CSIRO Australian e-Health Research Centre (http://aehrc.com).
 * All rights reserved. Use is subject to license terms and conditions.
 */
package au.csiro.ontology.model;

import java.io.Serializable;

/**
 * Base class for features.
 * 
 * @author Alejandro Metke
 *
 */
public abstract class Role implements Comparable, Serializable {
    
    private static final long serialVersionUID = 1L;

    abstract public String toString();

    abstract public int hashCode();

    abstract public boolean equals(Object o);
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy