Uses of Class
com.ail.financial.CardIssuer

Packages that use CardIssuer
com.ail.financial   
 

Uses of CardIssuer in com.ail.financial
 

Methods in com.ail.financial that return CardIssuer
static CardIssuer CardIssuer.forName(java.lang.String name)
          This method is similar to the valueOf() method offered by Java's Enum type, but in this case it will match either the Enum's name or the longName.
 CardIssuer PaymentCard.getIssuer()
           
static CardIssuer CardIssuer.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CardIssuer[] CardIssuer.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in com.ail.financial with parameters of type CardIssuer
 void PaymentCard.setIssuer(CardIssuer issuer)
           
 

Constructors in com.ail.financial with parameters of type CardIssuer
PaymentCard(CardIssuer issuer, java.lang.String cardNumber, java.lang.String cardHoldersName, java.lang.String issueNumber, java.lang.String securityCode)