A B C D E F H I M N P Q U

A

aliases() - Method in class com.buck.common.codec.Codec
Returns a set containing this codec's aliases.
availableCodecs() - Static method in class com.buck.common.codec.Codec
Constructs a sorted map from canonical codec names to codec objects.

B

Base16 - Class in com.buck.common.codec
Encodes and decodes data using the Base16 encoding.
Base16() - Constructor for class com.buck.common.codec.Base16
 
Base32 - Class in com.buck.common.codec
Codec for RFC 4648 Base32.
Base32() - Constructor for class com.buck.common.codec.Base32
 
Base32Hex - Class in com.buck.common.codec
Codec for RFC 4648 Base32 Encoding with Extended Hex Alphabet

This implementation does not encode/decode streaming data.

Base32Hex() - Constructor for class com.buck.common.codec.Base32Hex
 
Base64 - Class in com.buck.common.codec
Codec for RFC 4648 Base64.
Base64() - Constructor for class com.buck.common.codec.Base64
 
Base64URL - Class in com.buck.common.codec
Codec for RFC 4648 Base64 URL Safe.
Base64URL() - Constructor for class com.buck.common.codec.Base64URL
 

C

Codec - Class in com.buck.common.codec
A named mapping between encoded sequences of bytes and raw binary data.
Codec(String, String[]) - Constructor for class com.buck.common.codec.Codec
Initializes a new codec with the given canonical name and alias set.
codec() - Method in class com.buck.common.codec.CodecDecoder
Returns the codec that created this decoder.
codec() - Method in class com.buck.common.codec.CodecEncoder
Returns the codec that created this encoder.
CodecDecoder - Class in com.buck.common.codec
An engine that can transform a sequence of bytes in a specific encoding into a sequence of bytes.
CodecDecoder(Codec) - Constructor for class com.buck.common.codec.CodecDecoder
Initializes a new decoder.
CodecEncoder - Class in com.buck.common.codec
An engine that can transform raw data, represented as a sequence of bytes, to a specific encoding, into a sequence of bytes.
CodecEncoder(Codec) - Constructor for class com.buck.common.codec.CodecEncoder
Initializes a new encoder.
codecForName(String) - Method in class com.buck.common.codec.FastCodecProvider
 
codecForName(String) - Method in class com.buck.common.codec.spi.CodecProvider
Retrieves a codec for the given codec name.
CodecMalfunctionError - Error in com.buck.common.codec
Error thrown when the decode method of a CodecDecoder, or the encode method of a CodecEncoder, throws an unexpected exception.
CodecMalfunctionError(Exception) - Constructor for error com.buck.common.codec.CodecMalfunctionError
Initializes an instance of this class.
CodecProvider - Class in com.buck.common.codec.spi
Codec service-provider class.
CodecProvider() - Constructor for class com.buck.common.codec.spi.CodecProvider
Initializes a new codec provider.
codecs() - Method in class com.buck.common.codec.FastCodecProvider
 
codecs() - Method in class com.buck.common.codec.spi.CodecProvider
Creates an iterator that iterates over the codecs supported by this provider.
com.buck.common.codec - package com.buck.common.codec
Defines codecs, decoders, and encoders, for translating between binary content and encoded bytes.
com.buck.common.codec.spi - package com.buck.common.codec.spi
Service-provider classes for the com.buck.common.codec package.
compareTo(Codec) - Method in class com.buck.common.codec.Codec
Compares this codec to another.

D

decode(byte[]) - Method in class com.buck.common.codec.CodecDecoder
Decodes encoded data using the codec.

E

encode(byte[]) - Method in class com.buck.common.codec.CodecEncoder
Encodes raw data using the codec.
encode(UUID) - Method in class com.buck.common.codec.UUIDCoder
Encodes a UUID using the specified codec.
equals(Object) - Method in class com.buck.common.codec.Codec
Tells whether or not this object is equal to another.

F

FastCodecProvider - Class in com.buck.common.codec
Abstract base class for fast codec providers.
FastCodecProvider(String, Map<String, String>, Map<String, String>, Map<String, Codec>) - Constructor for class com.buck.common.codec.FastCodecProvider
 
forName(String) - Static method in class com.buck.common.codec.Codec
Returns a codec object for the named codec.

H

hashCode() - Method in class com.buck.common.codec.Codec
Computes a hashcode for this codec.

I

IllegalCodecNameException - Exception in com.buck.common.codec
Unchecked exception thrown when a string that is not a legal codec name is used as such.
IllegalCodecNameException(String) - Constructor for exception com.buck.common.codec.IllegalCodecNameException
Constructs a new exception with the specified detail message.
isBase64(byte) - Static method in class com.buck.common.codec.Base32Hex
 
isBase64(byte) - Static method in class com.buck.common.codec.Base64
 
isBase64(byte) - Static method in class com.buck.common.codec.Base64URL
 
isSupported(String) - Static method in class com.buck.common.codec.Codec
Tells whether the named codec is supported.

M

MalformedInputException - Exception in com.buck.common.codec
Checked exception thrown when an input byte sequence is not legal for the given codec.
MalformedInputException(String) - Constructor for exception com.buck.common.codec.MalformedInputException
Constructs a new exception with the specified detail message.
MalformedInputException(String, Throwable) - Constructor for exception com.buck.common.codec.MalformedInputException
Constructs a new exception with the specified detail message and cause.

N

name() - Method in class com.buck.common.codec.Codec
Returns this codec's canonical name.
newDecoder() - Method in class com.buck.common.codec.Base16
 
newDecoder() - Method in class com.buck.common.codec.Base32
 
newDecoder() - Method in class com.buck.common.codec.Base32Hex
 
newDecoder() - Method in class com.buck.common.codec.Base64
 
newDecoder() - Method in class com.buck.common.codec.Base64URL
 
newDecoder() - Method in class com.buck.common.codec.Codec
Constructs a new decoder for this codec.
newDecoder() - Method in class com.buck.common.codec.PercentEncoded
 
newDecoder() - Method in class com.buck.common.codec.QuotedPrintable
 
newDecoder() - Method in class com.buck.common.codec.URLEncoded
 
newEncoder() - Method in class com.buck.common.codec.Base16
 
newEncoder() - Method in class com.buck.common.codec.Base32
 
newEncoder() - Method in class com.buck.common.codec.Base32Hex
 
newEncoder() - Method in class com.buck.common.codec.Base64
 
newEncoder() - Method in class com.buck.common.codec.Base64URL
 
newEncoder() - Method in class com.buck.common.codec.Codec
Constructs a new encoder for this codec.
newEncoder() - Method in class com.buck.common.codec.PercentEncoded
 
newEncoder() - Method in class com.buck.common.codec.QuotedPrintable
 
newEncoder() - Method in class com.buck.common.codec.URLEncoded
 

P

PercentEncoded - Class in com.buck.common.codec
Codec for the percent-encoded encoding scheme.
PercentEncoded() - Constructor for class com.buck.common.codec.PercentEncoded
 

Q

QuotedPrintable - Class in com.buck.common.codec
Codec for the quoted-printable encoding scheme.
QuotedPrintable() - Constructor for class com.buck.common.codec.QuotedPrintable
 

U

UnsupportedCodecException - Exception in com.buck.common.codec
Unchecked exception thrown when a string that is not a legal codec name is used as such.
UnsupportedCodecException(String) - Constructor for exception com.buck.common.codec.UnsupportedCodecException
Constructs a new exception with the specified detail message.
URLEncoded - Class in com.buck.common.codec
Codec for the www-form-urlencoded encoding scheme.
URLEncoded() - Constructor for class com.buck.common.codec.URLEncoded
 
UUIDCoder - Class in com.buck.common.codec
Encodes and decodes UUID objects using a supplied codec.
UUIDCoder(Codec) - Constructor for class com.buck.common.codec.UUIDCoder
Constructs a codec to encode UUID object.

A B C D E F H I M N P Q U

Copyright © 2013. All Rights Reserved.