discord-jadx/app/src/main/java/kotlin/text/MatchResult.java

43 lines
881 B
Java

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<String> getGroupValues();
f getGroups();
IntRange getRange();
String getValue();
MatchResult next();
}