
com.github.loyada.jdollarx.ElementProperty Maven / Gradle / Ivy
package com.github.loyada.jdollarx;
public interface ElementProperty {
String toXpath() ;
default ElementProperty or(ElementProperty p) {
return new ElementProperties.Or(this, p);
}
default ElementProperty and(ElementProperty prop) {
return new ElementProperties.And(this, prop);
}
default ElementProperty andNot(ElementProperty prop) { return and(new ElementProperties.Not(prop)); }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy