mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
25 lines
672 B
Java
Generated
25 lines
672 B
Java
Generated
// Generated automatically from kotlin.text.MatchResult for testing purposes
|
|
|
|
package kotlin.text;
|
|
|
|
import java.util.List;
|
|
import kotlin.ranges.IntRange;
|
|
import kotlin.text.MatchGroupCollection;
|
|
|
|
public interface MatchResult
|
|
{
|
|
IntRange getRange();
|
|
List<String> getGroupValues();
|
|
MatchGroupCollection getGroups();
|
|
MatchResult next();
|
|
MatchResult.Destructured getDestructured();
|
|
String getValue();
|
|
static public class Destructured
|
|
{
|
|
protected Destructured() {}
|
|
public Destructured(MatchResult p0){}
|
|
public final List<String> toList(){ return null; }
|
|
public final MatchResult getMatch(){ return null; }
|
|
}
|
|
}
|