static fun fromHexString(str: String!): UInt384!
(source)
Parse a hexadecimal string into a UInt384
.
str
- String!: The hexadecimal string to parse, which may or may not start with "0x". That representation may contain less than 48 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 48 bytes.
Return
UInt384!: The value corresponding to str
.