jimu-decompiled/sources/com/google/zxing/oned/rss/expanded/ExpandedRow.java
2025-05-13 19:24:51 +02:00

46 lines
1019 B
Java

package com.google.zxing.oned.rss.expanded;
import java.util.ArrayList;
import java.util.List;
/* loaded from: classes.dex */
final class ExpandedRow {
private final List<ExpandedPair> a;
private final int b;
private final boolean c;
ExpandedRow(List<ExpandedPair> list, int i, boolean z) {
this.a = new ArrayList(list);
this.b = i;
this.c = z;
}
List<ExpandedPair> a() {
return this.a;
}
int b() {
return this.b;
}
public boolean equals(Object obj) {
if (!(obj instanceof ExpandedRow)) {
return false;
}
ExpandedRow expandedRow = (ExpandedRow) obj;
return this.a.equals(expandedRow.a()) && this.c == expandedRow.c;
}
public int hashCode() {
return this.a.hashCode() ^ Boolean.valueOf(this.c).hashCode();
}
public String toString() {
return "{ " + this.a + " }";
}
boolean a(List<ExpandedPair> list) {
return this.a.equals(list);
}
}