38 lines
809 B
Java
38 lines
809 B
Java
package com.google.zxing.oned.rss;
|
|
|
|
import com.google.zxing.ResultPoint;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class FinderPattern {
|
|
private final int a;
|
|
private final int[] b;
|
|
private final ResultPoint[] c;
|
|
|
|
public FinderPattern(int i, int[] iArr, int i2, int i3, int i4) {
|
|
this.a = i;
|
|
this.b = iArr;
|
|
float f = i4;
|
|
this.c = new ResultPoint[]{new ResultPoint(i2, f), new ResultPoint(i3, f)};
|
|
}
|
|
|
|
public ResultPoint[] a() {
|
|
return this.c;
|
|
}
|
|
|
|
public int[] b() {
|
|
return this.b;
|
|
}
|
|
|
|
public int c() {
|
|
return this.a;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
return (obj instanceof FinderPattern) && this.a == ((FinderPattern) obj).a;
|
|
}
|
|
|
|
public int hashCode() {
|
|
return this.a;
|
|
}
|
|
}
|