59 lines
1.7 KiB
Java
59 lines
1.7 KiB
Java
package com.google.android.libraries.places.api.model;
|
|
|
|
import com.airbnb.deeplinkdispatch.UrlTreeKt;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes2.dex */
|
|
abstract class zzl extends OpeningHours {
|
|
private final List zza;
|
|
private final List zzb;
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public zzl(List list, List list2) {
|
|
if (list == null) {
|
|
throw new NullPointerException("Null periods");
|
|
}
|
|
this.zza = list;
|
|
if (list2 == null) {
|
|
throw new NullPointerException("Null weekdayText");
|
|
}
|
|
this.zzb = list2;
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (obj == this) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof OpeningHours)) {
|
|
return false;
|
|
}
|
|
OpeningHours openingHours = (OpeningHours) obj;
|
|
return this.zza.equals(openingHours.getPeriods()) && this.zzb.equals(openingHours.getWeekdayText());
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return ((this.zza.hashCode() ^ 1000003) * 1000003) ^ this.zzb.hashCode();
|
|
}
|
|
|
|
public final String toString() {
|
|
String obj = this.zza.toString();
|
|
String obj2 = this.zzb.toString();
|
|
StringBuilder sb = new StringBuilder("OpeningHours{periods=");
|
|
sb.append(obj);
|
|
sb.append(", weekdayText=");
|
|
sb.append(obj2);
|
|
sb.append(UrlTreeKt.componentParamSuffix);
|
|
return sb.toString();
|
|
}
|
|
|
|
@Override // com.google.android.libraries.places.api.model.OpeningHours
|
|
public final List<String> getWeekdayText() {
|
|
return this.zzb;
|
|
}
|
|
|
|
@Override // com.google.android.libraries.places.api.model.OpeningHours
|
|
public final List<Period> getPeriods() {
|
|
return this.zza;
|
|
}
|
|
}
|