decodeWithCase

fun decodeWithCase(encoded: Long): String

Decodes a base-37 encoded long into the respective string, replacing all underscores with spaces, as well as all first letters of each individual word to begin with an uppercase letter. If the input long is within the correct range, but isn't v

Return

the string that was encoded in base-37 encoding.

Parameters

encoded

the base-37 encoded long value.

Throws

if the encoded value exceeds the maximum 12-character long value, or if the value isn't in base-37 representation.