Rabbit-R1/android (non root)/java/sources/com/google/zxing/oned/rss/FinderPattern.java

38 lines
919 B
Java
Raw Normal View History

2024-05-21 21:08:36 +00:00
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;
}
}