Uses of Class
com.google.common.io.BaseEncoding
Packages that use BaseEncoding
Package
Description
Utility methods and classes for I/O; for example input streams, output streams, readers, writers,
and files.
-
Uses of BaseEncoding in com.google.common.io
Methods in com.google.common.io that return BaseEncodingModifier and TypeMethodDescriptionstatic BaseEncodingBaseEncoding.base16()The "base16" encoding specified by RFC 4648 section 8, Base 16 Encoding.static BaseEncodingBaseEncoding.base32()The "base32" encoding specified by RFC 4648 section 6, Base 32 Encoding.static BaseEncodingBaseEncoding.base32Hex()The "base32hex" encoding specified by RFC 4648 section 7, Base 32 Encoding with Extended Hex Alphabet.static BaseEncodingBaseEncoding.base64()The "base64" base encoding specified by RFC 4648 section 4, Base 64 Encoding.static BaseEncodingBaseEncoding.base64Url()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."abstract BaseEncodingBaseEncoding.ignoreCase()Returns an encoding that behaves equivalently to this encoding, but decodes letters without regard to case.abstract BaseEncodingBaseEncoding.lowerCase()Returns an encoding that behaves equivalently to this encoding, but encodes and decodes with lowercase letters.abstract BaseEncodingBaseEncoding.omitPadding()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.abstract BaseEncodingBaseEncoding.upperCase()Returns an encoding that behaves equivalently to this encoding, but encodes and decodes with uppercase letters.abstract BaseEncodingBaseEncoding.withPadChar(char padChar) Returns an encoding that behaves equivalently to this encoding, but uses an alternate character for padding.abstract BaseEncodingBaseEncoding.withSeparator(String separator, int n) Returns an encoding that behaves equivalently to this encoding, but adds a separator string after everyncharacters.