Java com.google.common.io BaseEncoding fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.io BaseEncoding fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.io BaseEncoding.

The text is from its open source code.

Method

BaseEncodingbase32Hex()
The "base32hex" encoding specified by RFC 4648 section 7, Base 32 Encoding with Extended Hex Alphabet.
BaseEncodingbase64Url()
The "base64url" encoding specified by RFC 4648 section 5, Base 64 Encoding with URL and Filename Safe Alphabet, also sometimes referred to as the "web safe Base64."
byte[]decode(CharSequence chars)
Decodes the specified character sequence, and returns the resulting byte[] .
Stringencode(byte[] bytes)
Encodes the specified byte array, and returns the encoded String .
BaseEncodinglowerCase()
Returns an encoding that behaves equivalently to this encoding, but encodes and decodes with lowercase letters.
BaseEncodingomitPadding()
Returns an encoding that behaves equivalently to this encoding, but omits any padding characters as specified by RFC 4648 section 3.2, Padding of Encoded Data.
BaseEncodingupperCase()
Returns an encoding that behaves equivalently to this encoding, but encodes and decodes with uppercase letters.