edu.stanford.protege.webprotege.perspective.NodePropertyValue Maven / Gradle / Ivy
The newest version!
package edu.stanford.protege.webprotege.perspective;
import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
/**
* Matthew Horridge
* Stanford Center for Biomedical Informatics Research
* 2021-04-20
*/
@JsonSubTypes(
@JsonSubTypes.Type(value = StringNodePropertyValue.class)
)
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME)
public interface NodePropertyValue {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy