46 lines
1019 B
Java
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);
|
|
}
|
|
}
|