public abstract class Base64Alphabet extends Alphabet
| Modifier and Type | Field and Description |
|---|---|
static Base64Alphabet |
STANDARD
The standard RFC 4648 base-64 alphabet.
|
| Modifier | Constructor and Description |
|---|---|
protected |
Base64Alphabet(boolean littleEndian)
Construct a new instance.
|
| Modifier and Type | Method and 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.
|
isLittleEndianpublic static final Base64Alphabet STANDARD
protected Base64Alphabet(boolean littleEndian)
littleEndian - true if the alphabet is little-endian (LSB first), false otherwiseCopyright © 2017 JBoss, a division of Red Hat, Inc.