Enum PaymentSystem

    • Enum Constant Detail

      • INTER_KASSA

        public static final PaymentSystem INTER_KASSA
        Represents the InterCassa payment system.
      • PAY_MASTER

        public static final PaymentSystem PAY_MASTER
        Represents the PayMaster payment system.
      • QIWI

        public static final PaymentSystem QIWI
        Represents the QiWi payment system.
      • TEST_MODE

        public static final PaymentSystem TEST_MODE
        Represents the payment system stub for any test payments.
      • UNKNOWN

        public static final PaymentSystem UNKNOWN
        Represents a payment system that isn't known yet.
    • Method Detail

      • values

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

        public static PaymentSystem 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
      • getByKey

        @NotNull
        public static @NotNull PaymentSystem getByKey​(@NotNull
                                                      @NotNull String key)
        Get the enum constant by the known payment system key (can be null).
        If the key is null/empty or relevant enum constant with this key will not be found then this method will return UNKNOWN constant as default.
        Parameters:
        key - the payment system key to find an enum constant.
        Returns:
        The found payment system enum constant or UNKNOWN by default.