io.cucumber.cucumberexpressions.Expression Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cucumber-expressions Show documentation
Show all versions of cucumber-expressions Show documentation
Cucumber Expressions are simple patterns for matching Step Definitions with Gherkin steps
package io.cucumber.cucumberexpressions;
import org.apiguardian.api.API;
import java.lang.reflect.Type;
import java.util.List;
import java.util.Set;
import java.util.regex.Pattern;
@API(status = API.Status.STABLE)
public interface Expression {
List> match(String text, Type... typeHints);
Pattern getRegexp();
String getSource();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy