Converts a UID to an integer value. The array must be the same length as uid_length or an exception will be thrown. @param uid The hex encoded UID to convert @param uid_length Length the array SHOULD be according to the UID config @return The UID converted to an integer @throws IllegalArgumentExcept
(final String uid, final short uid_length)
| 1441 | * @since 2.1 |
| 1442 | */ |
| 1443 | public static long uidToLong(final String uid, final short uid_length) { |
| 1444 | return uidToLong(stringToUid(uid), uid_length); |
| 1445 | } |
| 1446 | |
| 1447 | /** |
| 1448 | * Converts a UID to an integer value. The array must be the same length as |