Files
rr3-apk/decompiled/sources/com/fyber/inneractive/sdk/protobuf/UInt32Value.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

187 lines
6.5 KiB
Java

package com.fyber.inneractive.sdk.protobuf;
import com.fyber.inneractive.sdk.protobuf.GeneratedMessageLite;
import java.io.IOException;
import java.io.InputStream;
import java.nio.ByteBuffer;
/* loaded from: classes2.dex */
public final class UInt32Value extends GeneratedMessageLite<UInt32Value, b> implements p0 {
private static final UInt32Value DEFAULT_INSTANCE;
private static volatile w0<UInt32Value> PARSER = null;
public static final int VALUE_FIELD_NUMBER = 1;
private int value_;
public static /* synthetic */ class a {
public static final /* synthetic */ int[] a;
static {
int[] iArr = new int[GeneratedMessageLite.f.values().length];
a = iArr;
try {
iArr[GeneratedMessageLite.f.NEW_MUTABLE_INSTANCE.ordinal()] = 1;
} catch (NoSuchFieldError unused) {
}
try {
a[GeneratedMessageLite.f.NEW_BUILDER.ordinal()] = 2;
} catch (NoSuchFieldError unused2) {
}
try {
a[GeneratedMessageLite.f.BUILD_MESSAGE_INFO.ordinal()] = 3;
} catch (NoSuchFieldError unused3) {
}
try {
a[GeneratedMessageLite.f.GET_DEFAULT_INSTANCE.ordinal()] = 4;
} catch (NoSuchFieldError unused4) {
}
try {
a[GeneratedMessageLite.f.GET_PARSER.ordinal()] = 5;
} catch (NoSuchFieldError unused5) {
}
try {
a[GeneratedMessageLite.f.GET_MEMOIZED_IS_INITIALIZED.ordinal()] = 6;
} catch (NoSuchFieldError unused6) {
}
try {
a[GeneratedMessageLite.f.SET_MEMOIZED_IS_INITIALIZED.ordinal()] = 7;
} catch (NoSuchFieldError unused7) {
}
}
}
public static final class b extends GeneratedMessageLite.b<UInt32Value, b> implements p0 {
public b() {
super(UInt32Value.DEFAULT_INSTANCE);
}
}
static {
UInt32Value uInt32Value = new UInt32Value();
DEFAULT_INSTANCE = uInt32Value;
GeneratedMessageLite.registerDefaultInstance(UInt32Value.class, uInt32Value);
}
private UInt32Value() {
}
/* JADX INFO: Access modifiers changed from: private */
public void clearValue() {
this.value_ = 0;
}
public static UInt32Value getDefaultInstance() {
return DEFAULT_INSTANCE;
}
public static b newBuilder() {
return DEFAULT_INSTANCE.createBuilder();
}
public static UInt32Value of(int i) {
b newBuilder = newBuilder();
newBuilder.c();
((UInt32Value) newBuilder.b).setValue(i);
return newBuilder.a();
}
public static UInt32Value parseDelimitedFrom(InputStream inputStream) throws IOException {
return (UInt32Value) GeneratedMessageLite.parseDelimitedFrom(DEFAULT_INSTANCE, inputStream);
}
public static UInt32Value parseFrom(ByteBuffer byteBuffer) throws z {
return (UInt32Value) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteBuffer);
}
public static w0<UInt32Value> parser() {
return DEFAULT_INSTANCE.getParserForType();
}
/* JADX INFO: Access modifiers changed from: private */
public void setValue(int i) {
this.value_ = i;
}
@Override // com.fyber.inneractive.sdk.protobuf.GeneratedMessageLite
public final Object dynamicMethod(GeneratedMessageLite.f fVar, Object obj, Object obj2) {
switch (a.a[fVar.ordinal()]) {
case 1:
return new UInt32Value();
case 2:
return new b();
case 3:
return GeneratedMessageLite.newMessageInfo(DEFAULT_INSTANCE, "\u0000\u0001\u0000\u0000\u0001\u0001\u0001\u0000\u0000\u0000\u0001\u000b", new Object[]{"value_"});
case 4:
return DEFAULT_INSTANCE;
case 5:
w0<UInt32Value> w0Var = PARSER;
if (w0Var == null) {
synchronized (UInt32Value.class) {
try {
w0Var = PARSER;
if (w0Var == null) {
w0Var = new GeneratedMessageLite.c<>(DEFAULT_INSTANCE);
PARSER = w0Var;
}
} finally {
}
}
}
return w0Var;
case 6:
return (byte) 1;
case 7:
return null;
default:
throw new UnsupportedOperationException();
}
}
public int getValue() {
return this.value_;
}
public static b newBuilder(UInt32Value uInt32Value) {
return DEFAULT_INSTANCE.createBuilder(uInt32Value);
}
public static UInt32Value parseDelimitedFrom(InputStream inputStream, q qVar) throws IOException {
return (UInt32Value) GeneratedMessageLite.parseDelimitedFrom(DEFAULT_INSTANCE, inputStream, qVar);
}
public static UInt32Value parseFrom(ByteBuffer byteBuffer, q qVar) throws z {
return (UInt32Value) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteBuffer, qVar);
}
public static UInt32Value parseFrom(i iVar) throws z {
return (UInt32Value) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, iVar);
}
public static UInt32Value parseFrom(i iVar, q qVar) throws z {
return (UInt32Value) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, iVar, qVar);
}
public static UInt32Value parseFrom(byte[] bArr) throws z {
return (UInt32Value) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, bArr);
}
public static UInt32Value parseFrom(byte[] bArr, q qVar) throws z {
return (UInt32Value) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, bArr, qVar);
}
public static UInt32Value parseFrom(InputStream inputStream) throws IOException {
return (UInt32Value) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, inputStream);
}
public static UInt32Value parseFrom(InputStream inputStream, q qVar) throws IOException {
return (UInt32Value) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, inputStream, qVar);
}
public static UInt32Value parseFrom(j jVar) throws IOException {
return (UInt32Value) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, jVar);
}
public static UInt32Value parseFrom(j jVar, q qVar) throws IOException {
return (UInt32Value) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, jVar, qVar);
}
}