Package io.scanbot.sdk.check
Enum CheckStandard
- java.lang.Object
-
- java.lang.Enum<CheckStandard>
-
- io.scanbot.sdk.check.CheckStandard
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CheckStandard>
public enum CheckStandard extends java.lang.Enum<CheckStandard>
Supported check standards.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUSA check compatible with the Australian Paper Clearing System cheque standard.CANA check format commonly used in Canada.FRAA check format commonly used in France.INDA check compatible with the CTS-2010 standard issued by the Reserve Bank of India in 2012.ISRA check format commonly used in Israel.KWTA check format commonly used in Kuwait.UAEA check format commonly used in the United Arab Emirates.USAA check compatible with the ASC X9 standard used in the USA.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CheckStandardvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CheckStandard[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
USA
public static final CheckStandard USA
A check compatible with the ASC X9 standard used in the USA.
-
FRA
public static final CheckStandard FRA
A check format commonly used in France.
-
KWT
public static final CheckStandard KWT
A check format commonly used in Kuwait.
-
AUS
public static final CheckStandard AUS
A check compatible with the Australian Paper Clearing System cheque standard.
-
IND
public static final CheckStandard IND
A check compatible with the CTS-2010 standard issued by the Reserve Bank of India in 2012.
-
ISR
public static final CheckStandard ISR
A check format commonly used in Israel.
-
UAE
public static final CheckStandard UAE
A check format commonly used in the United Arab Emirates.
-
CAN
public static final CheckStandard CAN
A check format commonly used in Canada.
-
-
Method Detail
-
values
public static CheckStandard[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CheckStandard c : CheckStandard.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CheckStandard valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-