Files
codeql/java/ql/test/stubs/okhttp-4.9.3/kotlin/text/MatchResult.java
Joe Farebrother 4afecf575e Generate more stubs for okhttp and fix tests.
Some generated stubs needed to be manually corrected.
2022-12-09 13:41:17 +00:00

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; }
}
}