net.anotheria.access.custom.FemaleObjectConstraint Maven / Gradle / Ivy
The newest version!
package net.anotheria.access.custom;
import net.anotheria.access.Ontology;
/**
* Is met if the object is of female gender.
* @author another
*/
public class FemaleObjectConstraint extends AbstractObjectGenderConstraint{
@Override
public String getRequiredGender() {
return Ontology.ATT_VAL_FEMALE;
}
public String toString(){
return "Object is Female";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy