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 a; private final int b; private final boolean c; ExpandedRow(List list, int i, boolean z) { this.a = new ArrayList(list); this.b = i; this.c = z; } List 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 list) { return this.a.equals(list); } }