Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
package com.google.maps.android.ktx;
|
||||
|
||||
import com.google.android.gms.maps.model.IndoorBuilding;
|
||||
import kotlin.Metadata;
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
|
||||
/* JADX INFO: compiled from: GoogleMap.kt */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
@Metadata(d1 = {"\u0000*\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0006\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B\r\u0012\u0006\u0010\u0002\u001a\u00020\u0003¢\u0006\u0002\u0010\u0004J\t\u0010\u0007\u001a\u00020\u0003HÆ\u0003J\u0013\u0010\b\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u0003HÆ\u0001J\u0013\u0010\t\u001a\u00020\n2\b\u0010\u000b\u001a\u0004\u0018\u00010\fHÖ\u0003J\t\u0010\r\u001a\u00020\u000eHÖ\u0001J\t\u0010\u000f\u001a\u00020\u0010HÖ\u0001R\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u0005\u0010\u0006¨\u0006\u0011"}, d2 = {"Lcom/google/maps/android/ktx/IndoorLevelActivatedEvent;", "Lcom/google/maps/android/ktx/IndoorChangeEvent;", "building", "Lcom/google/android/gms/maps/model/IndoorBuilding;", "(Lcom/google/android/gms/maps/model/IndoorBuilding;)V", "getBuilding", "()Lcom/google/android/gms/maps/model/IndoorBuilding;", "component1", "copy", "equals", "", "other", "", "hashCode", "", "toString", "", "maps-ktx_release"}, k = 1, mv = {1, 8, 0}, xi = 48)
|
||||
public final /* data */ class IndoorLevelActivatedEvent extends IndoorChangeEvent {
|
||||
private final IndoorBuilding building;
|
||||
|
||||
public static /* synthetic */ IndoorLevelActivatedEvent copy$default(IndoorLevelActivatedEvent indoorLevelActivatedEvent, IndoorBuilding indoorBuilding, int i, Object obj) {
|
||||
if ((i & 1) != 0) {
|
||||
indoorBuilding = indoorLevelActivatedEvent.building;
|
||||
}
|
||||
return indoorLevelActivatedEvent.copy(indoorBuilding);
|
||||
}
|
||||
|
||||
/* JADX INFO: renamed from: component1, reason: from getter */
|
||||
public final IndoorBuilding getBuilding() {
|
||||
return this.building;
|
||||
}
|
||||
|
||||
public final IndoorLevelActivatedEvent copy(IndoorBuilding building) {
|
||||
Intrinsics.checkNotNullParameter(building, "building");
|
||||
return new IndoorLevelActivatedEvent(building);
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
return (other instanceof IndoorLevelActivatedEvent) && Intrinsics.areEqual(this.building, ((IndoorLevelActivatedEvent) other).building);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return this.building.hashCode();
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "IndoorLevelActivatedEvent(building=" + this.building + ')';
|
||||
}
|
||||
|
||||
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
||||
public IndoorLevelActivatedEvent(IndoorBuilding building) {
|
||||
super(null);
|
||||
Intrinsics.checkNotNullParameter(building, "building");
|
||||
this.building = building;
|
||||
}
|
||||
|
||||
public final IndoorBuilding getBuilding() {
|
||||
return this.building;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user