Enum CardType

    • Enum Constant Detail

      • VISA

        public static final CardType VISA
      • AMEX

        public static final CardType AMEX
      • DISCOVER

        public static final CardType DISCOVER
      • DINERS_CLUB

        public static final CardType DINERS_CLUB
      • MAESTRO

        public static final CardType MAESTRO
      • SOLO

        public static final CardType SOLO
      • LASER

        public static final CardType LASER
      • CHINA_UNION_PAY

        public static final CardType CHINA_UNION_PAY
      • CARTE_BLANCHE

        public static final CardType CARTE_BLANCHE
      • UNKNOWN

        public static final CardType UNKNOWN
      • GIFT_CARD

        public static final CardType GIFT_CARD
      • GIROCARD

        public static final CardType GIROCARD
      • INTERAC

        public static final CardType INTERAC
      • RUPAY

        public static final CardType RUPAY
      • OTHER

        public static final CardType OTHER
    • Method Detail

      • values

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

        public static CardType 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