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

io.cucumber.plugin.event.Group Maven / Gradle / Ivy

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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy