Files
rr3-apk/decompiled-community/sources/gatewayprotocol/v1/DiagnosticEventsConfigurationKt.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
2026-02-18 15:48:36 -08:00

208 lines
8.8 KiB
Java

package gatewayprotocol.v1;
import com.google.protobuf.kotlin.DslList;
import com.google.protobuf.kotlin.DslProxy;
import com.google.protobuf.kotlin.ProtoDslMarker;
import gatewayprotocol.v1.DiagnosticEventRequestOuterClass;
import gatewayprotocol.v1.NativeConfigurationOuterClass;
import java.util.List;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes5.dex */
public final class DiagnosticEventsConfigurationKt {
public static final DiagnosticEventsConfigurationKt INSTANCE = new DiagnosticEventsConfigurationKt();
@ProtoDslMarker
public static final class Dsl {
public static final Companion Companion = new Companion(null);
private final NativeConfigurationOuterClass.DiagnosticEventsConfiguration.Builder _builder;
public /* synthetic */ Dsl(NativeConfigurationOuterClass.DiagnosticEventsConfiguration.Builder builder, DefaultConstructorMarker defaultConstructorMarker) {
this(builder);
}
private Dsl(NativeConfigurationOuterClass.DiagnosticEventsConfiguration.Builder builder) {
this._builder = builder;
}
public static final class Companion {
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
private Companion() {
}
public final /* synthetic */ Dsl _create(NativeConfigurationOuterClass.DiagnosticEventsConfiguration.Builder builder) {
Intrinsics.checkNotNullParameter(builder, "builder");
return new Dsl(builder, null);
}
}
public final /* synthetic */ NativeConfigurationOuterClass.DiagnosticEventsConfiguration _build() {
NativeConfigurationOuterClass.DiagnosticEventsConfiguration build = this._builder.build();
Intrinsics.checkNotNullExpressionValue(build, "_builder.build()");
return build;
}
public final boolean getEnabled() {
return this._builder.getEnabled();
}
public final void setEnabled(boolean z) {
this._builder.setEnabled(z);
}
public final void clearEnabled() {
this._builder.clearEnabled();
}
public final int getMaxBatchSize() {
return this._builder.getMaxBatchSize();
}
public final void setMaxBatchSize(int i) {
this._builder.setMaxBatchSize(i);
}
public final void clearMaxBatchSize() {
this._builder.clearMaxBatchSize();
}
public final int getMaxBatchIntervalMs() {
return this._builder.getMaxBatchIntervalMs();
}
public final void setMaxBatchIntervalMs(int i) {
this._builder.setMaxBatchIntervalMs(i);
}
public final void clearMaxBatchIntervalMs() {
this._builder.clearMaxBatchIntervalMs();
}
public final boolean getTtmEnabled() {
return this._builder.getTtmEnabled();
}
public final void setTtmEnabled(boolean z) {
this._builder.setTtmEnabled(z);
}
public final void clearTtmEnabled() {
this._builder.clearTtmEnabled();
}
public final DiagnosticEventRequestOuterClass.DiagnosticEventsSeverity getSeverity() {
DiagnosticEventRequestOuterClass.DiagnosticEventsSeverity severity = this._builder.getSeverity();
Intrinsics.checkNotNullExpressionValue(severity, "_builder.getSeverity()");
return severity;
}
public final void setSeverity(DiagnosticEventRequestOuterClass.DiagnosticEventsSeverity value) {
Intrinsics.checkNotNullParameter(value, "value");
this._builder.setSeverity(value);
}
public final void clearSeverity() {
this._builder.clearSeverity();
}
public static final class AllowedEventsProxy extends DslProxy {
private AllowedEventsProxy() {
}
}
public final /* synthetic */ DslList getAllowedEvents() {
List<DiagnosticEventRequestOuterClass.DiagnosticEventType> allowedEventsList = this._builder.getAllowedEventsList();
Intrinsics.checkNotNullExpressionValue(allowedEventsList, "_builder.getAllowedEventsList()");
return new DslList(allowedEventsList);
}
public final /* synthetic */ void addAllowedEvents(DslList dslList, DiagnosticEventRequestOuterClass.DiagnosticEventType value) {
Intrinsics.checkNotNullParameter(dslList, "<this>");
Intrinsics.checkNotNullParameter(value, "value");
this._builder.addAllowedEvents(value);
}
public final /* synthetic */ void plusAssignAllowedEvents(DslList<DiagnosticEventRequestOuterClass.DiagnosticEventType, AllowedEventsProxy> dslList, DiagnosticEventRequestOuterClass.DiagnosticEventType value) {
Intrinsics.checkNotNullParameter(dslList, "<this>");
Intrinsics.checkNotNullParameter(value, "value");
addAllowedEvents(dslList, value);
}
public final /* synthetic */ void addAllAllowedEvents(DslList dslList, Iterable values) {
Intrinsics.checkNotNullParameter(dslList, "<this>");
Intrinsics.checkNotNullParameter(values, "values");
this._builder.addAllAllowedEvents(values);
}
public final /* synthetic */ void plusAssignAllAllowedEvents(DslList<DiagnosticEventRequestOuterClass.DiagnosticEventType, AllowedEventsProxy> dslList, Iterable<? extends DiagnosticEventRequestOuterClass.DiagnosticEventType> values) {
Intrinsics.checkNotNullParameter(dslList, "<this>");
Intrinsics.checkNotNullParameter(values, "values");
addAllAllowedEvents(dslList, values);
}
public final /* synthetic */ void setAllowedEvents(DslList dslList, int i, DiagnosticEventRequestOuterClass.DiagnosticEventType value) {
Intrinsics.checkNotNullParameter(dslList, "<this>");
Intrinsics.checkNotNullParameter(value, "value");
this._builder.setAllowedEvents(i, value);
}
public final /* synthetic */ void clearAllowedEvents(DslList dslList) {
Intrinsics.checkNotNullParameter(dslList, "<this>");
this._builder.clearAllowedEvents();
}
public static final class BlockedEventsProxy extends DslProxy {
private BlockedEventsProxy() {
}
}
public final /* synthetic */ DslList getBlockedEvents() {
List<DiagnosticEventRequestOuterClass.DiagnosticEventType> blockedEventsList = this._builder.getBlockedEventsList();
Intrinsics.checkNotNullExpressionValue(blockedEventsList, "_builder.getBlockedEventsList()");
return new DslList(blockedEventsList);
}
public final /* synthetic */ void addBlockedEvents(DslList dslList, DiagnosticEventRequestOuterClass.DiagnosticEventType value) {
Intrinsics.checkNotNullParameter(dslList, "<this>");
Intrinsics.checkNotNullParameter(value, "value");
this._builder.addBlockedEvents(value);
}
public final /* synthetic */ void plusAssignBlockedEvents(DslList<DiagnosticEventRequestOuterClass.DiagnosticEventType, BlockedEventsProxy> dslList, DiagnosticEventRequestOuterClass.DiagnosticEventType value) {
Intrinsics.checkNotNullParameter(dslList, "<this>");
Intrinsics.checkNotNullParameter(value, "value");
addBlockedEvents(dslList, value);
}
public final /* synthetic */ void addAllBlockedEvents(DslList dslList, Iterable values) {
Intrinsics.checkNotNullParameter(dslList, "<this>");
Intrinsics.checkNotNullParameter(values, "values");
this._builder.addAllBlockedEvents(values);
}
public final /* synthetic */ void plusAssignAllBlockedEvents(DslList<DiagnosticEventRequestOuterClass.DiagnosticEventType, BlockedEventsProxy> dslList, Iterable<? extends DiagnosticEventRequestOuterClass.DiagnosticEventType> values) {
Intrinsics.checkNotNullParameter(dslList, "<this>");
Intrinsics.checkNotNullParameter(values, "values");
addAllBlockedEvents(dslList, values);
}
public final /* synthetic */ void setBlockedEvents(DslList dslList, int i, DiagnosticEventRequestOuterClass.DiagnosticEventType value) {
Intrinsics.checkNotNullParameter(dslList, "<this>");
Intrinsics.checkNotNullParameter(value, "value");
this._builder.setBlockedEvents(i, value);
}
public final /* synthetic */ void clearBlockedEvents(DslList dslList) {
Intrinsics.checkNotNullParameter(dslList, "<this>");
this._builder.clearBlockedEvents();
}
}
private DiagnosticEventsConfigurationKt() {
}
}