checkChecksum method

bool checkChecksum(
  1. String s
)

@param s string of digits to check @return {@link #checkStandardUPCEANChecksum(CharSequence)} @throws FormatException if the string does not contain only digits

Implementation

bool checkChecksum(String s) {
  return checkStandardUPCEANChecksum(s);
}