Enum 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
      AUS
      A check compatible with the Australian Paper Clearing System cheque standard.
      CAN
      A check format commonly used in Canada.
      FRA
      A check format commonly used in France.
      IND
      A check compatible with the CTS-2010 standard issued by the Reserve Bank of India in 2012.
      ISR
      A check format commonly used in Israel.
      KWT
      A check format commonly used in Kuwait.
      UAE
      A check format commonly used in the United Arab Emirates.
      USA
      A 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 CheckStandard valueOf​(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.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • 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 name
        java.lang.NullPointerException - if the argument is null