97 lines
1.8 KiB
Java
97 lines
1.8 KiB
Java
package com.kofax.kmc.kut.utilities;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class MicrLine {
|
|
private String nH = "";
|
|
private String nI = "";
|
|
private String nJ = "";
|
|
private String nK = "";
|
|
private String nL = "";
|
|
private String nM = "";
|
|
private String nN = "";
|
|
private boolean nO = false;
|
|
private CheckType nP = CheckType.NONE;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public enum CheckType {
|
|
NONE,
|
|
PERSONAL_CHECK,
|
|
BUSINESS_CHECK
|
|
}
|
|
|
|
public void setTransitNumber(String str) {
|
|
this.nJ = str;
|
|
this.nO = true;
|
|
}
|
|
|
|
public void setOnUs2(String str) {
|
|
this.nM = str;
|
|
this.nO = true;
|
|
}
|
|
|
|
public void setOnUs1(String str) {
|
|
this.nL = str;
|
|
this.nO = true;
|
|
}
|
|
|
|
public void setOnUs(String str) {
|
|
this.nK = str;
|
|
this.nO = true;
|
|
}
|
|
|
|
public void setEPC(String str) {
|
|
this.nI = str;
|
|
this.nO = true;
|
|
}
|
|
|
|
public void setCheckType(CheckType checkType) {
|
|
this.nP = checkType;
|
|
}
|
|
|
|
public void setAuxiliaryOnUs(String str) {
|
|
this.nH = str;
|
|
this.nO = true;
|
|
}
|
|
|
|
public void setAmount(String str) {
|
|
this.nN = str;
|
|
this.nO = true;
|
|
}
|
|
|
|
public boolean getValueSet() {
|
|
return this.nO;
|
|
}
|
|
|
|
public String getTransitNumber() {
|
|
return this.nJ;
|
|
}
|
|
|
|
public String getOnUs2() {
|
|
return this.nM;
|
|
}
|
|
|
|
public String getOnUs1() {
|
|
return this.nL;
|
|
}
|
|
|
|
public String getOnUs() {
|
|
return this.nK;
|
|
}
|
|
|
|
public String getEPC() {
|
|
return this.nI;
|
|
}
|
|
|
|
public CheckType getCheckType() {
|
|
return this.nP;
|
|
}
|
|
|
|
public String getAuxiliaryOnUs() {
|
|
return this.nH;
|
|
}
|
|
|
|
public String getAmount() {
|
|
return this.nN;
|
|
}
|
|
}
|