Package net.sourceforge.plantuml.code
Class AsciiEncoderBase64
- java.lang.Object
-
- net.sourceforge.plantuml.code.AsciiEncoderBase64
-
- All Implemented Interfaces:
URLEncoder
public class AsciiEncoderBase64 extends Object implements URLEncoder
-
-
Constructor Summary
Constructors Constructor Description AsciiEncoderBase64()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
decode(String s)
static int
decode6bit(char c)
String
encode(byte[] data)
static char
encode6bit(byte b)
-
-
-
Method Detail
-
encode
public String encode(byte[] data)
- Specified by:
encode
in interfaceURLEncoder
-
decode
public byte[] decode(String s)
- Specified by:
decode
in interfaceURLEncoder
-
decode6bit
public static int decode6bit(char c)
-
encode6bit
public static char encode6bit(byte b)
-
-