static fun fromHexString(str: String!): UInt32!
(source)
Parse a hexadecimal string into a UInt32
.
str
- String!: The hexadecimal string to parse, which may or may not start with "0x". That representation may contain less than 8 bytes, in which case the result is left padded with zeros.
IllegalArgumentException
- if str
does not correspond to a valid hexadecimal representation or contains more than 8 bytes.
Return
UInt32!: The value corresponding to str
.