mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
37 lines
919 B
Java
37 lines
919 B
Java
package com.google.zxing.oned.rss;
|
|
|
|
import com.google.zxing.ResultPoint;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class FinderPattern {
|
|
private final ResultPoint[] resultPoints;
|
|
private final int[] startEnd;
|
|
private final int value;
|
|
|
|
public ResultPoint[] getResultPoints() {
|
|
return this.resultPoints;
|
|
}
|
|
|
|
public int[] getStartEnd() {
|
|
return this.startEnd;
|
|
}
|
|
|
|
public int getValue() {
|
|
return this.value;
|
|
}
|
|
|
|
public int hashCode() {
|
|
return this.value;
|
|
}
|
|
|
|
public FinderPattern(int i, int[] iArr, int i2, int i3, int i4) {
|
|
this.value = i;
|
|
this.startEnd = iArr;
|
|
float f = i4;
|
|
this.resultPoints = new ResultPoint[]{new ResultPoint(i2, f), new ResultPoint(i3, f)};
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
return (obj instanceof FinderPattern) && this.value == ((FinderPattern) obj).value;
|
|
}
|
|
}
|