Enum TxType

    • Enum Constant Detail

      • AUTH

        public static final TxType AUTH
      • PREAUTH

        public static final TxType PREAUTH
      • PREAUTHCAPTURE

        public static final TxType PREAUTHCAPTURE
      • ADJUST

        public static final TxType ADJUST
      • VOID

        public static final TxType VOID
      • VOIDRETURN

        public static final TxType VOIDRETURN
      • RETURN

        public static final TxType RETURN
      • REFUND

        public static final TxType REFUND
      • NAKEDREFUND

        public static final TxType NAKEDREFUND
      • GETBALANCE

        public static final TxType GETBALANCE
      • BATCHCLOSE

        public static final TxType BATCHCLOSE
      • ACTIVATE

        public static final TxType ACTIVATE
      • BALANCE_LOCK

        public static final TxType BALANCE_LOCK
      • LOAD

        public static final TxType LOAD
      • CASHOUT

        public static final TxType CASHOUT
      • CASHOUT_ACTIVE_STATUS

        public static final TxType CASHOUT_ACTIVE_STATUS
      • REDEMPTION

        public static final TxType REDEMPTION
      • REDEMPTION_UNLOCK

        public static final TxType REDEMPTION_UNLOCK
      • RELOAD

        public static final TxType RELOAD
      • INTERNET_ACTIVATE

        public static final TxType INTERNET_ACTIVATE
    • Method Detail

      • values

        public static TxType[] 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 (TxType c : TxType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TxType valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null