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

io.cucumber.cucumberexpressions.Expression Maven / Gradle / Ivy

Go to download

Cucumber Expressions are simple patterns for matching Step Definitions with Gherkin steps

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