Ejemplo n.º 1
0
 /**
  * Checks IP address
  *
  * @param String ipAddress
  * @param String regex
  * @return boolean true when it is valid address and false when it is not valid
  */
 public static boolean checkIp(String ipAddress, String regex) {
   return Validation.checkIPv4(ipAddress, regex) || Validation.checkIPv6(ipAddress, regex);
 }