Package org.wildfly.common.codec
Class Base64Alphabet
- java.lang.Object
-
- org.wildfly.common.codec.Alphabet
-
- org.wildfly.common.codec.Base64Alphabet
-
public abstract class Base64Alphabet extends Alphabet
A base-64 alphabet.
-
-
Field Summary
Fields Modifier and Type Field Description static Base64Alphabet
STANDARD
The standard RFC 4648 base-64 alphabet.
-
Constructor Summary
Constructors Modifier Constructor Description protected
Base64Alphabet(boolean littleEndian)
Construct a new instance.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract int
decode(int codePoint)
Decode the given code point.abstract int
encode(int val)
Encode the given 6-bit value to a code point.-
Methods inherited from class org.wildfly.common.codec.Alphabet
isLittleEndian
-
-
-
-
Field Detail
-
STANDARD
public static final Base64Alphabet STANDARD
The standard RFC 4648 base-64 alphabet.
-
-