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 StringFieldaccountNumberThe check payer's account number.protected AmountFieldamountThe amount of the check.protected StringFieldcheckNumberThe issuer's check number.protected DateFielddateThe date the check was issued.protected List<StringField>payeesList of the check's payees (recipients).protected StringFieldroutingNumberThe 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 booleancanEqual(Object other)booleanequals(Object o)StringFieldgetAccountNumber()The check payer's account number.AmountFieldgetAmount()The amount of the check.StringFieldgetCheckNumber()The issuer's check number.DateFieldgetDate()The date the check was issued.List<StringField>getPayees()List of the check's payees (recipients).StringFieldgetRoutingNumber()The check issuer's routing number.inthashCode()booleanisEmpty()Returnstrueif there are no predictions values.StringtoString()
-
-
-
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:PredictionReturnstrueif there are no predictions values. Accessing prediction values when this istruemay result in aNullPointerException- Specified by:
isEmptyin 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)
-
-