package kotlin.text; import d0.g0.f; import d0.z.d.m; import java.util.List; import kotlin.ranges.IntRange; /* compiled from: MatchResult.kt */ public interface MatchResult { /* compiled from: MatchResult.kt */ public static final class a { public static b getDestructured(MatchResult matchResult) { return new b(matchResult); } } /* compiled from: MatchResult.kt */ public static final class b { public final MatchResult a; public b(MatchResult matchResult) { m.checkNotNullParameter(matchResult, "match"); this.a = matchResult; } public final MatchResult getMatch() { return this.a; } } b getDestructured(); List getGroupValues(); f getGroups(); IntRange getRange(); String getValue(); MatchResult next(); }