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

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

There is a newer version: 17.1.0
Show newest version
package io.cucumber.cucumberexpressions;

import java.util.List;
import java.util.regex.Pattern;

public interface Expression {
    List> match(String text);

    Pattern getRegexp();

    String getSource();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy