Whenever I am trying to lookup on the internet to see if an int value which is accepted from a userfield has some characters like A-z or any special characters, all the sites happen to presume that the input is in the form of String. Function
boolean numberValidation(int number){
if number has characters mentioned above, return false
else return true
}
numberhas typeint, it can't contain alphanumeric characters.