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

com.github.loyada.jdollarx.ElementProperty Maven / Gradle / Ivy

There is a newer version: 1.5.5
Show newest version
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