![JAR search and dependency download from the Maven repository](/logo.png)
com.g2forge.gearbox.browser.operation.IOperationBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gb-browser Show documentation
Show all versions of gb-browser Show documentation
Library for browsing websites, screen scraping & automation.
package com.g2forge.gearbox.browser.operation;
import com.g2forge.alexandria.java.function.IConsumer1;
import com.g2forge.alexandria.java.function.IFunction1;
public interface IOperationBuilder {
public T execute(IConsumer1 super T> operation);
public V until(IFunction1 super T, ? extends V> function);
public default IOperationBuilder wrap(IFunction1 super T, IOperationWrapper> factory) {
return new WrappedOperationBuilder<>(factory, this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy