Package com.mindee.product.us.bankcheck
Class BankCheckV1Document
- java.lang.Object
-
- com.mindee.parsing.common.Prediction
-
- com.mindee.product.us.bankcheck.BankCheckV1Document
-
- Direct Known Subclasses:
BankCheckV1Page
public class BankCheckV1Document extends Prediction
Bank Check API version 1.1 document data.
-
-
Field Summary
Fields Modifier and Type Field Description protected StringField
accountNumber
The check payer's account number.protected AmountField
amount
The amount of the check.protected StringField
checkNumber
The issuer's check number.protected DateField
date
The date the check was issued.protected List<StringField>
payees
List of the check's payees (recipients).protected StringField
routingNumber
The check issuer's routing number.
-
Constructor Summary
Constructors Constructor Description BankCheckV1Document()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(Object other)
boolean
equals(Object o)
StringField
getAccountNumber()
The check payer's account number.AmountField
getAmount()
The amount of the check.StringField
getCheckNumber()
The issuer's check number.DateField
getDate()
The date the check was issued.List<StringField>
getPayees()
List of the check's payees (recipients).StringField
getRoutingNumber()
The check issuer's routing number.int
hashCode()
boolean
isEmpty()
Returnstrue
if there are no predictions values.String
toString()
-
-
-
Field Detail
-
accountNumber
protected StringField accountNumber
The check payer's account number.
-
amount
protected AmountField amount
The amount of the check.
-
checkNumber
protected StringField checkNumber
The issuer's check number.
-
date
protected DateField date
The date the check was issued.
-
payees
protected List<StringField> payees
List of the check's payees (recipients).
-
routingNumber
protected StringField routingNumber
The check issuer's routing number.
-
-
Method Detail
-
isEmpty
public boolean isEmpty()
Description copied from class:Prediction
Returnstrue
if there are no predictions values. Accessing prediction values when this istrue
may result in aNullPointerException
- Specified by:
isEmpty
in classPrediction
-
getAccountNumber
public StringField getAccountNumber()
The check payer's account number.
-
getAmount
public AmountField getAmount()
The amount of the check.
-
getCheckNumber
public StringField getCheckNumber()
The issuer's check number.
-
getDate
public DateField getDate()
The date the check was issued.
-
getPayees
public List<StringField> getPayees()
List of the check's payees (recipients).
-
getRoutingNumber
public StringField getRoutingNumber()
The check issuer's routing number.
-
canEqual
protected boolean canEqual(Object other)
-
-