| Package | Description |
|---|---|
| org.kocakosm.pitaya.util |
| Modifier and Type | Field and Description |
|---|---|
static BaseEncoding |
BaseEncoding.BASE_16
Base16 encoding scheme.
|
static BaseEncoding |
BaseEncoding.BASE_32
Base32 encoding scheme.
|
static BaseEncoding |
BaseEncoding.BASE_32_HEX
Base32 encoding scheme with extended Hex alphabet.
|
static BaseEncoding |
BaseEncoding.BASE_64
Base64 encoding scheme.
|
static BaseEncoding |
BaseEncoding.BASE_64_URL
Base64 encoding scheme with URL and filename safe alphabet.
|
| Modifier and Type | Method and Description |
|---|---|
BaseEncoding |
BaseEncoding.ignoreUnknownCharacters()
Returns a
BaseEncoding that behaves as this one except that
it ignores any unknown character when decoding encoded data. |
BaseEncoding |
BaseEncoding.withoutPadding()
Returns a
BaseEncoding that behaves as this one except that
it doesn't append padding when encoding data and treats any padding
character as an unknown character when decoding encoded data. |
BaseEncoding |
BaseEncoding.withSeparator(String separator,
int n)
Returns a
BaseEncoding that behaves as this one except that
it adds the specified separator after every n characters when
encoding data and ignores any occurence of the specified separator
when decoding encoded data. |
Copyright © 2012–2015. All rights reserved.