public abstract class Base32Alphabet extends Alphabet
| Modifier and Type | Field | Description |
|---|---|---|
static Base32Alphabet |
LOWERCASE |
The standard RFC 4648 base-32 alphabet mapped to lowercase.
|
static Base32Alphabet |
STANDARD |
The standard RFC 4648 base-32 alphabet.
|
| Modifier | Constructor | Description |
|---|---|---|
protected |
Base32Alphabet(boolean littleEndian) |
Construct a new instance.
|
| Modifier and Type | Method | Description |
|---|---|---|
abstract int |
decode(int codePoint) |
Decode the given code point.
|
abstract int |
encode(int val) |
Encode the given 5-bit value to a code point.
|
isLittleEndianpublic static final Base32Alphabet STANDARD
public static final Base32Alphabet LOWERCASE
protected Base32Alphabet(boolean littleEndian)
littleEndian - true if the alphabet is little-endian (LSB first), false otherwiseCopyright © 2017 JBoss, a division of Red Hat, Inc.