- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
297 lines
11 KiB
Java
297 lines
11 KiB
Java
package com.google.protobuf;
|
|
|
|
import com.google.protobuf.Any;
|
|
import com.google.protobuf.GeneratedMessageLite;
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.nio.ByteBuffer;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class Option extends GeneratedMessageLite<Option, Builder> implements OptionOrBuilder {
|
|
private static final Option DEFAULT_INSTANCE;
|
|
public static final int NAME_FIELD_NUMBER = 1;
|
|
private static volatile Parser<Option> PARSER = null;
|
|
public static final int VALUE_FIELD_NUMBER = 2;
|
|
private String name_ = "";
|
|
private Any value_;
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearValue() {
|
|
this.value_ = null;
|
|
}
|
|
|
|
public static Option getDefaultInstance() {
|
|
return DEFAULT_INSTANCE;
|
|
}
|
|
|
|
@Override // com.google.protobuf.OptionOrBuilder
|
|
public String getName() {
|
|
return this.name_;
|
|
}
|
|
|
|
@Override // com.google.protobuf.OptionOrBuilder
|
|
public boolean hasValue() {
|
|
return this.value_ != null;
|
|
}
|
|
|
|
private Option() {
|
|
}
|
|
|
|
@Override // com.google.protobuf.OptionOrBuilder
|
|
public ByteString getNameBytes() {
|
|
return ByteString.copyFromUtf8(this.name_);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setName(String str) {
|
|
str.getClass();
|
|
this.name_ = str;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearName() {
|
|
this.name_ = getDefaultInstance().getName();
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setNameBytes(ByteString byteString) {
|
|
AbstractMessageLite.checkByteStringIsUtf8(byteString);
|
|
this.name_ = byteString.toStringUtf8();
|
|
}
|
|
|
|
@Override // com.google.protobuf.OptionOrBuilder
|
|
public Any getValue() {
|
|
Any any = this.value_;
|
|
return any == null ? Any.getDefaultInstance() : any;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setValue(Any any) {
|
|
any.getClass();
|
|
this.value_ = any;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void mergeValue(Any any) {
|
|
any.getClass();
|
|
Any any2 = this.value_;
|
|
if (any2 == null || any2 == Any.getDefaultInstance()) {
|
|
this.value_ = any;
|
|
} else {
|
|
this.value_ = Any.newBuilder(this.value_).mergeFrom((Any.Builder) any).buildPartial();
|
|
}
|
|
}
|
|
|
|
public static Option parseFrom(ByteBuffer byteBuffer) throws InvalidProtocolBufferException {
|
|
return (Option) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteBuffer);
|
|
}
|
|
|
|
public static Option parseFrom(ByteBuffer byteBuffer, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (Option) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteBuffer, extensionRegistryLite);
|
|
}
|
|
|
|
public static Option parseFrom(ByteString byteString) throws InvalidProtocolBufferException {
|
|
return (Option) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteString);
|
|
}
|
|
|
|
public static Option parseFrom(ByteString byteString, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (Option) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteString, extensionRegistryLite);
|
|
}
|
|
|
|
public static Option parseFrom(byte[] bArr) throws InvalidProtocolBufferException {
|
|
return (Option) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, bArr);
|
|
}
|
|
|
|
public static Option parseFrom(byte[] bArr, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (Option) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, bArr, extensionRegistryLite);
|
|
}
|
|
|
|
public static Option parseFrom(InputStream inputStream) throws IOException {
|
|
return (Option) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, inputStream);
|
|
}
|
|
|
|
public static Option parseFrom(InputStream inputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (Option) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, inputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static Option parseDelimitedFrom(InputStream inputStream) throws IOException {
|
|
return (Option) GeneratedMessageLite.parseDelimitedFrom(DEFAULT_INSTANCE, inputStream);
|
|
}
|
|
|
|
public static Option parseDelimitedFrom(InputStream inputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (Option) GeneratedMessageLite.parseDelimitedFrom(DEFAULT_INSTANCE, inputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static Option parseFrom(CodedInputStream codedInputStream) throws IOException {
|
|
return (Option) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, codedInputStream);
|
|
}
|
|
|
|
public static Option parseFrom(CodedInputStream codedInputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (Option) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, codedInputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static Builder newBuilder() {
|
|
return DEFAULT_INSTANCE.createBuilder();
|
|
}
|
|
|
|
public static Builder newBuilder(Option option) {
|
|
return DEFAULT_INSTANCE.createBuilder(option);
|
|
}
|
|
|
|
public static final class Builder extends GeneratedMessageLite.Builder<Option, Builder> implements OptionOrBuilder {
|
|
public /* synthetic */ Builder(AnonymousClass1 anonymousClass1) {
|
|
this();
|
|
}
|
|
|
|
private Builder() {
|
|
super(Option.DEFAULT_INSTANCE);
|
|
}
|
|
|
|
@Override // com.google.protobuf.OptionOrBuilder
|
|
public String getName() {
|
|
return ((Option) this.instance).getName();
|
|
}
|
|
|
|
@Override // com.google.protobuf.OptionOrBuilder
|
|
public ByteString getNameBytes() {
|
|
return ((Option) this.instance).getNameBytes();
|
|
}
|
|
|
|
public Builder setName(String str) {
|
|
copyOnWrite();
|
|
((Option) this.instance).setName(str);
|
|
return this;
|
|
}
|
|
|
|
public Builder clearName() {
|
|
copyOnWrite();
|
|
((Option) this.instance).clearName();
|
|
return this;
|
|
}
|
|
|
|
public Builder setNameBytes(ByteString byteString) {
|
|
copyOnWrite();
|
|
((Option) this.instance).setNameBytes(byteString);
|
|
return this;
|
|
}
|
|
|
|
@Override // com.google.protobuf.OptionOrBuilder
|
|
public boolean hasValue() {
|
|
return ((Option) this.instance).hasValue();
|
|
}
|
|
|
|
@Override // com.google.protobuf.OptionOrBuilder
|
|
public Any getValue() {
|
|
return ((Option) this.instance).getValue();
|
|
}
|
|
|
|
public Builder setValue(Any any) {
|
|
copyOnWrite();
|
|
((Option) this.instance).setValue(any);
|
|
return this;
|
|
}
|
|
|
|
public Builder setValue(Any.Builder builder) {
|
|
copyOnWrite();
|
|
((Option) this.instance).setValue(builder.build());
|
|
return this;
|
|
}
|
|
|
|
public Builder mergeValue(Any any) {
|
|
copyOnWrite();
|
|
((Option) this.instance).mergeValue(any);
|
|
return this;
|
|
}
|
|
|
|
public Builder clearValue() {
|
|
copyOnWrite();
|
|
((Option) this.instance).clearValue();
|
|
return this;
|
|
}
|
|
}
|
|
|
|
/* renamed from: com.google.protobuf.Option$1, reason: invalid class name */
|
|
public static /* synthetic */ class AnonymousClass1 {
|
|
static final /* synthetic */ int[] $SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke;
|
|
|
|
static {
|
|
int[] iArr = new int[GeneratedMessageLite.MethodToInvoke.values().length];
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke = iArr;
|
|
try {
|
|
iArr[GeneratedMessageLite.MethodToInvoke.NEW_MUTABLE_INSTANCE.ordinal()] = 1;
|
|
} catch (NoSuchFieldError unused) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.NEW_BUILDER.ordinal()] = 2;
|
|
} catch (NoSuchFieldError unused2) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.BUILD_MESSAGE_INFO.ordinal()] = 3;
|
|
} catch (NoSuchFieldError unused3) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.GET_DEFAULT_INSTANCE.ordinal()] = 4;
|
|
} catch (NoSuchFieldError unused4) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.GET_PARSER.ordinal()] = 5;
|
|
} catch (NoSuchFieldError unused5) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.GET_MEMOIZED_IS_INITIALIZED.ordinal()] = 6;
|
|
} catch (NoSuchFieldError unused6) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.SET_MEMOIZED_IS_INITIALIZED.ordinal()] = 7;
|
|
} catch (NoSuchFieldError unused7) {
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override // com.google.protobuf.GeneratedMessageLite
|
|
public final Object dynamicMethod(GeneratedMessageLite.MethodToInvoke methodToInvoke, Object obj, Object obj2) {
|
|
AnonymousClass1 anonymousClass1 = null;
|
|
switch (AnonymousClass1.$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[methodToInvoke.ordinal()]) {
|
|
case 1:
|
|
return new Option();
|
|
case 2:
|
|
return new Builder(anonymousClass1);
|
|
case 3:
|
|
return GeneratedMessageLite.newMessageInfo(DEFAULT_INSTANCE, "\u0000\u0002\u0000\u0000\u0001\u0002\u0002\u0000\u0000\u0000\u0001Ȉ\u0002\t", new Object[]{"name_", "value_"});
|
|
case 4:
|
|
return DEFAULT_INSTANCE;
|
|
case 5:
|
|
Parser<Option> parser = PARSER;
|
|
if (parser == null) {
|
|
synchronized (Option.class) {
|
|
try {
|
|
parser = PARSER;
|
|
if (parser == null) {
|
|
parser = new GeneratedMessageLite.DefaultInstanceBasedParser<>(DEFAULT_INSTANCE);
|
|
PARSER = parser;
|
|
}
|
|
} finally {
|
|
}
|
|
}
|
|
}
|
|
return parser;
|
|
case 6:
|
|
return (byte) 1;
|
|
case 7:
|
|
return null;
|
|
default:
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
}
|
|
|
|
static {
|
|
Option option = new Option();
|
|
DEFAULT_INSTANCE = option;
|
|
GeneratedMessageLite.registerDefaultInstance(Option.class, option);
|
|
}
|
|
|
|
public static Parser<Option> parser() {
|
|
return DEFAULT_INSTANCE.getParserForType();
|
|
}
|
|
}
|