Package com.microstrategy.utils
Class Base16
- java.lang.Object
-
- com.microstrategy.utils.Base16
-
public class Base16 extends java.lang.Object
Deprecated.This should no longer be used. Binary to string mappings should use base 64 encoding (seeBase64
).This
Base16
codec maps byte data to the character set [B..Q]. Required to support legacy applications only, otherwise please use standardised base 64 encoding.- Since:
- MicroStrategy Web 8.0.0
-
-
Constructor Summary
Constructors Constructor Description Base16()
Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static java.lang.String
decodeUTF16BE(java.lang.String data)
Deprecated.Decodes aBase16
encoded string, and re-encodes it as a UTF-16BEString
.
-
-
-
Method Detail
-
decodeUTF16BE
public static java.lang.String decodeUTF16BE(java.lang.String data) throws MSTRUncheckedException
Deprecated.Decodes aBase16
encoded string, and re-encodes it as a UTF-16BEString
.- Parameters:
data
- ABase16
encoded string.- Returns:
- the base 16 decoded string encoded as UTF-16 big endian characters - this is the format returned by NCS
- Throws:
MSTRUncheckedException
- thrown if the UTF-16BE encoding is not supported by the Java VM
-
-