57 lines
1.5 KiB
Java
57 lines
1.5 KiB
Java
|
package com.kofax.kmc.ken.engines;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
class Barcode {
|
||
|
private final int _angle;
|
||
|
private final int _checkDigitLocation;
|
||
|
private final double[] _cornerX;
|
||
|
private final double[] _cornerY;
|
||
|
private final String _data;
|
||
|
private final int _dataType;
|
||
|
private final int _type;
|
||
|
|
||
|
public Barcode(int i, double[] dArr, double[] dArr2, int i2, String str, int i3, int i4) {
|
||
|
this._type = i;
|
||
|
this._cornerX = dArr;
|
||
|
this._cornerY = dArr2;
|
||
|
this._angle = i2;
|
||
|
this._data = str;
|
||
|
this._dataType = i3;
|
||
|
this._checkDigitLocation = i4;
|
||
|
}
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
public int getType() {
|
||
|
return this._type;
|
||
|
}
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
public int getDataType() {
|
||
|
return this._dataType;
|
||
|
}
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
public String getData() {
|
||
|
return this._data;
|
||
|
}
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
public double[] getCornerY() {
|
||
|
return this._cornerY;
|
||
|
}
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
public double[] getCornerX() {
|
||
|
return this._cornerX;
|
||
|
}
|
||
|
|
||
|
int getCheckDigitLocation() {
|
||
|
return this._checkDigitLocation;
|
||
|
}
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
public int getAngle() {
|
||
|
return this._angle;
|
||
|
}
|
||
|
}
|