what-the-bank/sources/com/kofax/mobile/sdk/extract/id/QuickExtractorSettings.java

156 lines
4.5 KiB
Java

package com.kofax.mobile.sdk.extract.id;
import com.kofax.kmc.ken.engines.data.BarCodeType;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
/* loaded from: classes3.dex */
public class QuickExtractorSettings {
private Set<BarCodeType> RO = new HashSet(Arrays.asList(BarCodeType.PDF417, BarCodeType.QR));
private float aeS;
private float aeT;
private float aeU;
private float aeV;
public Set<BarCodeType> getBarcodes() {
return new HashSet(this.RO);
}
public void setBarcodes(Set<BarCodeType> set) {
this.RO = new HashSet(set);
}
/* JADX WARN: Code restructure failed: missing block: B:8:0x000b, code lost:
if (r3 > 50.0f) goto L4;
*/
/*
Code decompiled incorrectly, please refer to instructions dump.
To view partially-correct add '--show-bad-code' argument
*/
public void setFaceTopPadding(float r3) {
/*
r2 = this;
r0 = 0
int r1 = (r3 > r0 ? 1 : (r3 == r0 ? 0 : -1))
if (r1 >= 0) goto L7
L5:
r3 = r0
goto Le
L7:
r0 = 1112014848(0x42480000, float:50.0)
int r1 = (r3 > r0 ? 1 : (r3 == r0 ? 0 : -1))
if (r1 <= 0) goto Le
goto L5
Le:
r2.aeU = r3
return
*/
throw new UnsupportedOperationException("Method not decompiled: com.kofax.mobile.sdk.extract.id.QuickExtractorSettings.setFaceTopPadding(float):void");
}
/* JADX WARN: Code restructure failed: missing block: B:8:0x000b, code lost:
if (r3 > 50.0f) goto L4;
*/
/*
Code decompiled incorrectly, please refer to instructions dump.
To view partially-correct add '--show-bad-code' argument
*/
public void setFaceRightPadding(float r3) {
/*
r2 = this;
r0 = 0
int r1 = (r3 > r0 ? 1 : (r3 == r0 ? 0 : -1))
if (r1 >= 0) goto L7
L5:
r3 = r0
goto Le
L7:
r0 = 1112014848(0x42480000, float:50.0)
int r1 = (r3 > r0 ? 1 : (r3 == r0 ? 0 : -1))
if (r1 <= 0) goto Le
goto L5
Le:
r2.aeT = r3
return
*/
throw new UnsupportedOperationException("Method not decompiled: com.kofax.mobile.sdk.extract.id.QuickExtractorSettings.setFaceRightPadding(float):void");
}
/* JADX WARN: Code restructure failed: missing block: B:8:0x000b, code lost:
if (r3 > 50.0f) goto L4;
*/
/*
Code decompiled incorrectly, please refer to instructions dump.
To view partially-correct add '--show-bad-code' argument
*/
public void setFaceLeftPadding(float r3) {
/*
r2 = this;
r0 = 0
int r1 = (r3 > r0 ? 1 : (r3 == r0 ? 0 : -1))
if (r1 >= 0) goto L7
L5:
r3 = r0
goto Le
L7:
r0 = 1112014848(0x42480000, float:50.0)
int r1 = (r3 > r0 ? 1 : (r3 == r0 ? 0 : -1))
if (r1 <= 0) goto Le
goto L5
Le:
r2.aeS = r3
return
*/
throw new UnsupportedOperationException("Method not decompiled: com.kofax.mobile.sdk.extract.id.QuickExtractorSettings.setFaceLeftPadding(float):void");
}
/* JADX WARN: Code restructure failed: missing block: B:8:0x000b, code lost:
if (r3 > 50.0f) goto L4;
*/
/*
Code decompiled incorrectly, please refer to instructions dump.
To view partially-correct add '--show-bad-code' argument
*/
public void setFaceBottomPadding(float r3) {
/*
r2 = this;
r0 = 0
int r1 = (r3 > r0 ? 1 : (r3 == r0 ? 0 : -1))
if (r1 >= 0) goto L7
L5:
r3 = r0
goto Le
L7:
r0 = 1112014848(0x42480000, float:50.0)
int r1 = (r3 > r0 ? 1 : (r3 == r0 ? 0 : -1))
if (r1 <= 0) goto Le
goto L5
Le:
r2.aeV = r3
return
*/
throw new UnsupportedOperationException("Method not decompiled: com.kofax.mobile.sdk.extract.id.QuickExtractorSettings.setFaceBottomPadding(float):void");
}
public float getFaceTopPadding() {
return this.aeU;
}
public float getFaceRightPadding() {
return this.aeT;
}
public float getFaceLeftPadding() {
return this.aeS;
}
public float getFaceBottomPadding() {
return this.aeV;
}
}