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

122 lines
2.9 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.internal.maps.zzau;
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
/* JADX INFO: loaded from: classes2.dex */
public final class TileOverlay {
private final zzau zza;
public TileOverlay(zzau zzauVar) {
this.zza = (zzau) Preconditions.checkNotNull(zzauVar);
}
public boolean equals(Object obj) {
if (!(obj instanceof TileOverlay)) {
return false;
}
try {
return this.zza.zzn(((TileOverlay) obj).zza);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public boolean getFadeIn() {
try {
return this.zza.zzo();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public String getId() {
try {
return this.zza.zzg();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public float getTransparency() {
try {
return this.zza.zzd();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public float getZIndex() {
try {
return this.zza.zze();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public int hashCode() {
try {
return this.zza.zzf();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public boolean isVisible() {
try {
return this.zza.zzp();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void clearTileCache() {
try {
this.zza.zzh();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void remove() {
try {
this.zza.zzi();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setFadeIn(boolean z) {
try {
this.zza.zzj(z);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setTransparency(float f) {
try {
this.zza.zzk(f);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setVisible(boolean z) {
try {
this.zza.zzl(z);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setZIndex(float f) {
try {
this.zza.zzm(f);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
}