edu.stanford.protege.webprotege.criteria.AnyRelationshipValueCriteria Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webprotege-criteria Show documentation
Show all versions of webprotege-criteria Show documentation
Data structures for representing matching criteria
package edu.stanford.protege.webprotege.criteria;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.google.auto.value.AutoValue;
import javax.annotation.Nonnull;
/**
* Matthew Horridge
* Stanford Center for Biomedical Informatics Research
* 2019-12-02
*/
@AutoValue
@JsonTypeName("AnyValue")
public abstract class AnyRelationshipValueCriteria implements RelationshipValueCriteria {
@Nonnull
@JsonCreator
public static AnyRelationshipValueCriteria get() {
return new AutoValue_AnyRelationshipValueCriteria();
}
@Override
public R accept(@Nonnull RelationshipValueCriteriaVisitor visitor) {
return visitor.visit(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy