io.cucumber.plugin.event.Group Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cucumber-plugin Show documentation
Show all versions of cucumber-plugin Show documentation
Plugin interface for Cucumber-JVM
package io.cucumber.plugin.event;
import java.util.Collection;
/**
* A capture group in a Regular or Cucumber Expression.
*/
public interface Group {
Collection getChildren();
String getValue();
int getStart();
int getEnd();
}