Files
iTartanas/itranvias_code/com/google/android.gms/maps/model/Circle.java
T

212 lines
5.2 KiB
Java

package com.google.android.gms.maps.model;
import android.os.RemoteException;
import com.google.android.gms.common.internal.Preconditions;
import com.google.android.gms.dynamic.ObjectWrapper;
import java.util.List;
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
/* JADX INFO: loaded from: classes2.dex */
public final class Circle {
private final com.google.android.gms.internal.maps.zzl zza;
public Circle(com.google.android.gms.internal.maps.zzl zzlVar) {
this.zza = (com.google.android.gms.internal.maps.zzl) Preconditions.checkNotNull(zzlVar);
}
public final boolean equals(Object obj) {
if (!(obj instanceof Circle)) {
return false;
}
try {
return this.zza.zzy(((Circle) obj).zza);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public LatLng getCenter() {
try {
return this.zza.zzk();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public int getFillColor() {
try {
return this.zza.zzg();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public String getId() {
try {
return this.zza.zzl();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public double getRadius() {
try {
return this.zza.zzd();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public int getStrokeColor() {
try {
return this.zza.zzh();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public List<PatternItem> getStrokePattern() {
try {
return PatternItem.zza(this.zza.zzm());
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public float getStrokeWidth() {
try {
return this.zza.zze();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public Object getTag() {
try {
return ObjectWrapper.unwrap(this.zza.zzj());
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public float getZIndex() {
try {
return this.zza.zzf();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public final int hashCode() {
try {
return this.zza.zzi();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public boolean isClickable() {
try {
return this.zza.zzz();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public boolean isVisible() {
try {
return this.zza.zzA();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void remove() {
try {
this.zza.zzn();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setClickable(boolean z) {
try {
this.zza.zzp(z);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setFillColor(int i) {
try {
this.zza.zzq(i);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setRadius(double d) {
try {
this.zza.zzr(d);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setStrokeColor(int i) {
try {
this.zza.zzs(i);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setStrokePattern(List<PatternItem> list) {
try {
this.zza.zzt(list);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setStrokeWidth(float f) {
try {
this.zza.zzu(f);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setTag(Object obj) {
try {
this.zza.zzv(ObjectWrapper.wrap(obj));
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setVisible(boolean z) {
try {
this.zza.zzw(z);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setZIndex(float f) {
try {
this.zza.zzx(f);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setCenter(LatLng latLng) {
try {
Preconditions.checkNotNull(latLng, "center must not be null.");
this.zza.zzo(latLng);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
}