Initial version -- added millennium read funcionality

This commit is contained in:
Pablo
2026-03-09 22:05:28 +01:00
commit 77c2ded482
2770 changed files with 141927 additions and 0 deletions
@@ -0,0 +1,95 @@
package com.google.android.gms.maps.model;
import android.os.IBinder;
import android.os.Parcel;
import android.os.Parcelable;
import android.util.Log;
import com.google.android.gms.common.internal.Objects;
import com.google.android.gms.common.internal.Preconditions;
import com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable;
import com.google.android.gms.common.internal.safeparcel.SafeParcelWriter;
import com.google.android.gms.dynamic.IObjectWrapper;
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
/* JADX INFO: loaded from: classes2.dex */
public class Cap extends AbstractSafeParcelable {
public static final Parcelable.Creator<Cap> CREATOR = new zzb();
private static final String zza = "Cap";
private final int zzb;
private final BitmapDescriptor zzc;
private final Float zzd;
protected Cap(int i) {
this(i, (BitmapDescriptor) null, (Float) null);
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof Cap)) {
return false;
}
Cap cap = (Cap) obj;
return this.zzb == cap.zzb && Objects.equal(this.zzc, cap.zzc) && Objects.equal(this.zzd, cap.zzd);
}
public int hashCode() {
return Objects.hashCode(Integer.valueOf(this.zzb), this.zzc, this.zzd);
}
public String toString() {
return "[Cap: type=" + this.zzb + "]";
}
@Override // android.os.Parcelable
public void writeToParcel(Parcel parcel, int i) {
int i2 = this.zzb;
int iBeginObjectHeader = SafeParcelWriter.beginObjectHeader(parcel);
SafeParcelWriter.writeInt(parcel, 2, i2);
BitmapDescriptor bitmapDescriptor = this.zzc;
SafeParcelWriter.writeIBinder(parcel, 3, bitmapDescriptor == null ? null : bitmapDescriptor.zza().asBinder(), false);
SafeParcelWriter.writeFloatObject(parcel, 4, this.zzd, false);
SafeParcelWriter.finishObjectHeader(parcel, iBeginObjectHeader);
}
final Cap zza() {
int i = this.zzb;
if (i == 0) {
return new ButtCap();
}
if (i == 1) {
return new SquareCap();
}
if (i == 2) {
return new RoundCap();
}
if (i == 3) {
Preconditions.checkState(this.zzc != null, "bitmapDescriptor must not be null");
Preconditions.checkState(this.zzd != null, "bitmapRefWidth must not be null");
return new CustomCap(this.zzc, this.zzd.floatValue());
}
Log.w(zza, "Unknown Cap type: " + i);
return this;
}
Cap(int i, IBinder iBinder, Float f) {
this(i, iBinder == null ? null : new BitmapDescriptor(IObjectWrapper.Stub.asInterface(iBinder)), f);
}
private Cap(int i, BitmapDescriptor bitmapDescriptor, Float f) {
boolean z = f != null && f.floatValue() > 0.0f;
if (i == 3) {
z = bitmapDescriptor != null && z;
i = 3;
}
Preconditions.checkArgument(z, String.format("Invalid Cap: type=%s bitmapDescriptor=%s bitmapRefWidth=%s", Integer.valueOf(i), bitmapDescriptor, f));
this.zzb = i;
this.zzc = bitmapDescriptor;
this.zzd = f;
}
protected Cap(BitmapDescriptor bitmapDescriptor, float f) {
this(3, bitmapDescriptor, Float.valueOf(f));
}
}