- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
285 lines
11 KiB
Java
285 lines
11 KiB
Java
package com.google.protobuf;
|
|
|
|
import com.google.protobuf.GeneratedMessageLite;
|
|
import com.google.protobuf.Internal;
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.nio.ByteBuffer;
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class FieldMask extends GeneratedMessageLite<FieldMask, Builder> implements FieldMaskOrBuilder {
|
|
private static final FieldMask DEFAULT_INSTANCE;
|
|
private static volatile Parser<FieldMask> PARSER = null;
|
|
public static final int PATHS_FIELD_NUMBER = 1;
|
|
private Internal.ProtobufList<String> paths_ = GeneratedMessageLite.emptyProtobufList();
|
|
|
|
public static FieldMask getDefaultInstance() {
|
|
return DEFAULT_INSTANCE;
|
|
}
|
|
|
|
@Override // com.google.protobuf.FieldMaskOrBuilder
|
|
public List<String> getPathsList() {
|
|
return this.paths_;
|
|
}
|
|
|
|
private FieldMask() {
|
|
}
|
|
|
|
@Override // com.google.protobuf.FieldMaskOrBuilder
|
|
public int getPathsCount() {
|
|
return this.paths_.size();
|
|
}
|
|
|
|
@Override // com.google.protobuf.FieldMaskOrBuilder
|
|
public String getPaths(int i) {
|
|
return this.paths_.get(i);
|
|
}
|
|
|
|
@Override // com.google.protobuf.FieldMaskOrBuilder
|
|
public ByteString getPathsBytes(int i) {
|
|
return ByteString.copyFromUtf8(this.paths_.get(i));
|
|
}
|
|
|
|
private void ensurePathsIsMutable() {
|
|
Internal.ProtobufList<String> protobufList = this.paths_;
|
|
if (protobufList.isModifiable()) {
|
|
return;
|
|
}
|
|
this.paths_ = GeneratedMessageLite.mutableCopy(protobufList);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setPaths(int i, String str) {
|
|
str.getClass();
|
|
ensurePathsIsMutable();
|
|
this.paths_.set(i, str);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void addPaths(String str) {
|
|
str.getClass();
|
|
ensurePathsIsMutable();
|
|
this.paths_.add(str);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void addAllPaths(Iterable<String> iterable) {
|
|
ensurePathsIsMutable();
|
|
AbstractMessageLite.addAll((Iterable) iterable, (List) this.paths_);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearPaths() {
|
|
this.paths_ = GeneratedMessageLite.emptyProtobufList();
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void addPathsBytes(ByteString byteString) {
|
|
AbstractMessageLite.checkByteStringIsUtf8(byteString);
|
|
ensurePathsIsMutable();
|
|
this.paths_.add(byteString.toStringUtf8());
|
|
}
|
|
|
|
public static FieldMask parseFrom(ByteBuffer byteBuffer) throws InvalidProtocolBufferException {
|
|
return (FieldMask) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteBuffer);
|
|
}
|
|
|
|
public static FieldMask parseFrom(ByteBuffer byteBuffer, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (FieldMask) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteBuffer, extensionRegistryLite);
|
|
}
|
|
|
|
public static FieldMask parseFrom(ByteString byteString) throws InvalidProtocolBufferException {
|
|
return (FieldMask) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteString);
|
|
}
|
|
|
|
public static FieldMask parseFrom(ByteString byteString, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (FieldMask) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteString, extensionRegistryLite);
|
|
}
|
|
|
|
public static FieldMask parseFrom(byte[] bArr) throws InvalidProtocolBufferException {
|
|
return (FieldMask) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, bArr);
|
|
}
|
|
|
|
public static FieldMask parseFrom(byte[] bArr, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (FieldMask) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, bArr, extensionRegistryLite);
|
|
}
|
|
|
|
public static FieldMask parseFrom(InputStream inputStream) throws IOException {
|
|
return (FieldMask) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, inputStream);
|
|
}
|
|
|
|
public static FieldMask parseFrom(InputStream inputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (FieldMask) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, inputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static FieldMask parseDelimitedFrom(InputStream inputStream) throws IOException {
|
|
return (FieldMask) GeneratedMessageLite.parseDelimitedFrom(DEFAULT_INSTANCE, inputStream);
|
|
}
|
|
|
|
public static FieldMask parseDelimitedFrom(InputStream inputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (FieldMask) GeneratedMessageLite.parseDelimitedFrom(DEFAULT_INSTANCE, inputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static FieldMask parseFrom(CodedInputStream codedInputStream) throws IOException {
|
|
return (FieldMask) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, codedInputStream);
|
|
}
|
|
|
|
public static FieldMask parseFrom(CodedInputStream codedInputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (FieldMask) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, codedInputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static Builder newBuilder() {
|
|
return DEFAULT_INSTANCE.createBuilder();
|
|
}
|
|
|
|
public static Builder newBuilder(FieldMask fieldMask) {
|
|
return DEFAULT_INSTANCE.createBuilder(fieldMask);
|
|
}
|
|
|
|
public static final class Builder extends GeneratedMessageLite.Builder<FieldMask, Builder> implements FieldMaskOrBuilder {
|
|
public /* synthetic */ Builder(AnonymousClass1 anonymousClass1) {
|
|
this();
|
|
}
|
|
|
|
private Builder() {
|
|
super(FieldMask.DEFAULT_INSTANCE);
|
|
}
|
|
|
|
@Override // com.google.protobuf.FieldMaskOrBuilder
|
|
public List<String> getPathsList() {
|
|
return Collections.unmodifiableList(((FieldMask) this.instance).getPathsList());
|
|
}
|
|
|
|
@Override // com.google.protobuf.FieldMaskOrBuilder
|
|
public int getPathsCount() {
|
|
return ((FieldMask) this.instance).getPathsCount();
|
|
}
|
|
|
|
@Override // com.google.protobuf.FieldMaskOrBuilder
|
|
public String getPaths(int i) {
|
|
return ((FieldMask) this.instance).getPaths(i);
|
|
}
|
|
|
|
@Override // com.google.protobuf.FieldMaskOrBuilder
|
|
public ByteString getPathsBytes(int i) {
|
|
return ((FieldMask) this.instance).getPathsBytes(i);
|
|
}
|
|
|
|
public Builder setPaths(int i, String str) {
|
|
copyOnWrite();
|
|
((FieldMask) this.instance).setPaths(i, str);
|
|
return this;
|
|
}
|
|
|
|
public Builder addPaths(String str) {
|
|
copyOnWrite();
|
|
((FieldMask) this.instance).addPaths(str);
|
|
return this;
|
|
}
|
|
|
|
public Builder addAllPaths(Iterable<String> iterable) {
|
|
copyOnWrite();
|
|
((FieldMask) this.instance).addAllPaths(iterable);
|
|
return this;
|
|
}
|
|
|
|
public Builder clearPaths() {
|
|
copyOnWrite();
|
|
((FieldMask) this.instance).clearPaths();
|
|
return this;
|
|
}
|
|
|
|
public Builder addPathsBytes(ByteString byteString) {
|
|
copyOnWrite();
|
|
((FieldMask) this.instance).addPathsBytes(byteString);
|
|
return this;
|
|
}
|
|
}
|
|
|
|
/* renamed from: com.google.protobuf.FieldMask$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 FieldMask();
|
|
case 2:
|
|
return new Builder(anonymousClass1);
|
|
case 3:
|
|
return GeneratedMessageLite.newMessageInfo(DEFAULT_INSTANCE, "\u0000\u0001\u0000\u0000\u0001\u0001\u0001\u0000\u0001\u0000\u0001Ț", new Object[]{"paths_"});
|
|
case 4:
|
|
return DEFAULT_INSTANCE;
|
|
case 5:
|
|
Parser<FieldMask> parser = PARSER;
|
|
if (parser == null) {
|
|
synchronized (FieldMask.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 {
|
|
FieldMask fieldMask = new FieldMask();
|
|
DEFAULT_INSTANCE = fieldMask;
|
|
GeneratedMessageLite.registerDefaultInstance(FieldMask.class, fieldMask);
|
|
}
|
|
|
|
public static Parser<FieldMask> parser() {
|
|
return DEFAULT_INSTANCE.getParserForType();
|
|
}
|
|
}
|