Package com.helger.commons.codec
Interface ICodec<DATATYPE>
-
- Type Parameters:
DATATYPE- data type to be encoded and decoded
- All Known Subinterfaces:
IByteArrayCodec,ICharArrayCodec
- All Known Implementing Classes:
AbstractRFC1522Codec,Base16Codec,Base32Codec,Base64Codec,FlateCodec,GZIPCodec,IdentityByteArrayCodec,IdentityCodec,LZWCodec,QuotedPrintableCodec,RFC1522BCodec,RFC1522QCodec,RFC2616Codec,URLCodec
public interface ICodec<DATATYPE> extends IEncoder<DATATYPE,DATATYPE>, IDecoder<DATATYPE,DATATYPE>
Interface for a single encoder + decoder.- Author:
- Philip Helger
-
-
Method Summary
Static Methods Modifier and Type Method Description static <T> IdentityCodec<T>identity()-
Methods inherited from interface com.helger.commons.codec.IDecoder
getDecoded
-
Methods inherited from interface com.helger.commons.codec.IEncoder
getEncoded
-
-
-
-
Method Detail
-
identity
@Nonnull static <T> IdentityCodec<T> identity()
-
-