static bool creditValidator(String credit) { //credit card if u wanna if (isCreditCard(credit)) { return true; } return false; }