- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
238 lines
9.3 KiB
Java
238 lines
9.3 KiB
Java
package com.google.protobuf;
|
|
|
|
import com.google.protobuf.GeneratedMessageLite;
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.nio.ByteBuffer;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class Duration extends GeneratedMessageLite<Duration, Builder> implements DurationOrBuilder {
|
|
private static final Duration DEFAULT_INSTANCE;
|
|
public static final int NANOS_FIELD_NUMBER = 2;
|
|
private static volatile Parser<Duration> PARSER = null;
|
|
public static final int SECONDS_FIELD_NUMBER = 1;
|
|
private int nanos_;
|
|
private long seconds_;
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearNanos() {
|
|
this.nanos_ = 0;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearSeconds() {
|
|
this.seconds_ = 0L;
|
|
}
|
|
|
|
public static Duration getDefaultInstance() {
|
|
return DEFAULT_INSTANCE;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setNanos(int i) {
|
|
this.nanos_ = i;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setSeconds(long j) {
|
|
this.seconds_ = j;
|
|
}
|
|
|
|
@Override // com.google.protobuf.DurationOrBuilder
|
|
public int getNanos() {
|
|
return this.nanos_;
|
|
}
|
|
|
|
@Override // com.google.protobuf.DurationOrBuilder
|
|
public long getSeconds() {
|
|
return this.seconds_;
|
|
}
|
|
|
|
private Duration() {
|
|
}
|
|
|
|
public static Duration parseFrom(ByteBuffer byteBuffer) throws InvalidProtocolBufferException {
|
|
return (Duration) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteBuffer);
|
|
}
|
|
|
|
public static Duration parseFrom(ByteBuffer byteBuffer, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (Duration) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteBuffer, extensionRegistryLite);
|
|
}
|
|
|
|
public static Duration parseFrom(ByteString byteString) throws InvalidProtocolBufferException {
|
|
return (Duration) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteString);
|
|
}
|
|
|
|
public static Duration parseFrom(ByteString byteString, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (Duration) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteString, extensionRegistryLite);
|
|
}
|
|
|
|
public static Duration parseFrom(byte[] bArr) throws InvalidProtocolBufferException {
|
|
return (Duration) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, bArr);
|
|
}
|
|
|
|
public static Duration parseFrom(byte[] bArr, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (Duration) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, bArr, extensionRegistryLite);
|
|
}
|
|
|
|
public static Duration parseFrom(InputStream inputStream) throws IOException {
|
|
return (Duration) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, inputStream);
|
|
}
|
|
|
|
public static Duration parseFrom(InputStream inputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (Duration) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, inputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static Duration parseDelimitedFrom(InputStream inputStream) throws IOException {
|
|
return (Duration) GeneratedMessageLite.parseDelimitedFrom(DEFAULT_INSTANCE, inputStream);
|
|
}
|
|
|
|
public static Duration parseDelimitedFrom(InputStream inputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (Duration) GeneratedMessageLite.parseDelimitedFrom(DEFAULT_INSTANCE, inputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static Duration parseFrom(CodedInputStream codedInputStream) throws IOException {
|
|
return (Duration) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, codedInputStream);
|
|
}
|
|
|
|
public static Duration parseFrom(CodedInputStream codedInputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (Duration) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, codedInputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static Builder newBuilder() {
|
|
return DEFAULT_INSTANCE.createBuilder();
|
|
}
|
|
|
|
public static Builder newBuilder(Duration duration) {
|
|
return DEFAULT_INSTANCE.createBuilder(duration);
|
|
}
|
|
|
|
public static final class Builder extends GeneratedMessageLite.Builder<Duration, Builder> implements DurationOrBuilder {
|
|
public /* synthetic */ Builder(AnonymousClass1 anonymousClass1) {
|
|
this();
|
|
}
|
|
|
|
private Builder() {
|
|
super(Duration.DEFAULT_INSTANCE);
|
|
}
|
|
|
|
@Override // com.google.protobuf.DurationOrBuilder
|
|
public long getSeconds() {
|
|
return ((Duration) this.instance).getSeconds();
|
|
}
|
|
|
|
public Builder setSeconds(long j) {
|
|
copyOnWrite();
|
|
((Duration) this.instance).setSeconds(j);
|
|
return this;
|
|
}
|
|
|
|
public Builder clearSeconds() {
|
|
copyOnWrite();
|
|
((Duration) this.instance).clearSeconds();
|
|
return this;
|
|
}
|
|
|
|
@Override // com.google.protobuf.DurationOrBuilder
|
|
public int getNanos() {
|
|
return ((Duration) this.instance).getNanos();
|
|
}
|
|
|
|
public Builder setNanos(int i) {
|
|
copyOnWrite();
|
|
((Duration) this.instance).setNanos(i);
|
|
return this;
|
|
}
|
|
|
|
public Builder clearNanos() {
|
|
copyOnWrite();
|
|
((Duration) this.instance).clearNanos();
|
|
return this;
|
|
}
|
|
}
|
|
|
|
/* renamed from: com.google.protobuf.Duration$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 Duration();
|
|
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\u0002\u0004", new Object[]{"seconds_", "nanos_"});
|
|
case 4:
|
|
return DEFAULT_INSTANCE;
|
|
case 5:
|
|
Parser<Duration> parser = PARSER;
|
|
if (parser == null) {
|
|
synchronized (Duration.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 {
|
|
Duration duration = new Duration();
|
|
DEFAULT_INSTANCE = duration;
|
|
GeneratedMessageLite.registerDefaultInstance(Duration.class, duration);
|
|
}
|
|
|
|
public static Parser<Duration> parser() {
|
|
return DEFAULT_INSTANCE.getParserForType();
|
|
}
|
|
}
|