Uses of Interface
com.helger.commons.codec.IEncoder
-
Packages that use IEncoder Package Description com.helger.commons.codec com.helger.commons.url -
-
Uses of IEncoder in com.helger.commons.codec
Subinterfaces of IEncoder in com.helger.commons.codec Modifier and Type Interface Description interfaceIByteArrayCodecInterface for a single byte array encoder + decoder.interfaceIByteArrayEncoderInterface for a single encoder of bytes.interfaceIByteArrayStreamEncoderInterface for a single encoder of bytes, based on streams.interfaceICharArrayCodecInterface for a single char array encoder + decoder.interfaceICharArrayEncoderInterface for a single encoder of chars.interfaceICharArrayStreamEncoderInterface for a single encoder of chars, based on reader/writer.interfaceICodec<DATATYPE>Interface for a single encoder + decoder.Classes in com.helger.commons.codec that implement IEncoder Modifier and Type Class Description classAbstractRFC1522CodecImplements methods common to all codecs defined in RFC 1522.classBase16CodecBase16 encoder and decoder.classBase32CodecBase32 encoder and decoder based on Apache Commons Codec Base32.classBase64CodecEncoder and decoder for Base64classFlateCodecEncoder and decoder for flate compressionclassGZIPCodecEncoder and decoder for GZip compressionclassIdentityByteArrayCodecSpecial implementation ofIByteArrayCodecthat does nothing.classIdentityCodec<DATATYPE>Special implementation ofICodecthat does nothing.classLZWCodecEncoder and decoder for the LZW algorithmclassQuotedPrintableCodecEncoder and decoder for quoted printable stuff.classRFC1522BCodecIdentical to the Base64 encoding defined by RFC 1521 and allows a character set to be specified.classRFC1522QCodecSimilar to the Quoted-Printable content-transfer-encoding defined in RFC 1521 and designed to allow text containing mostly ASCII characters to be decipherable on an ASCII terminal without decoding.classRFC2616CodecCodec for RFC 2616 HTTP header values.classURLCodecEncoder and decoder for URL stuff based on RFC 3986. -
Uses of IEncoder in com.helger.commons.url
Classes in com.helger.commons.url that implement IEncoder Modifier and Type Class Description classURLParameterEncoderEncoder for URLsMethods in com.helger.commons.url with parameters of type IEncoder Modifier and Type Method Description voidURLParameter. appendTo(StringBuilder aSB, IEncoder<String,String> aQueryParameterEncoder)static StringURLHelper. getQueryParametersAsString(List<? extends URLParameter> aQueryParams, IEncoder<String,String> aQueryParameterEncoder)Create a parameter string.static StringURLHelper. getURLString(String sPath, List<? extends URLParameter> aQueryParams, String sAnchor, IEncoder<String,String> aQueryParameterEncoder)Get the final representation of the URL using the specified elements.
-