Uses of Class
org.jboss.netty.handler.codec.base64.Base64Dialect
-
Packages that use Base64Dialect Package Description org.jboss.netty.handler.codec.base64 Encoder and decoder which transform a Base64-encodedStringorChannelBufferinto a decodedChannelBufferand vice versa. -
-
Uses of Base64Dialect in org.jboss.netty.handler.codec.base64
Fields in org.jboss.netty.handler.codec.base64 declared as Base64Dialect Modifier and Type Field Description private Base64DialectBase64Decoder. dialectprivate Base64DialectBase64Encoder. dialectMethods in org.jboss.netty.handler.codec.base64 that return Base64Dialect Modifier and Type Method Description static Base64DialectBase64Dialect. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Base64Dialect[]Base64Dialect. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jboss.netty.handler.codec.base64 with parameters of type Base64Dialect Modifier and Type Method Description private static byte[]Base64. alphabet(Base64Dialect dialect)private static booleanBase64. breakLines(Base64Dialect dialect)private static byte[]Base64. decodabet(Base64Dialect dialect)static ChannelBufferBase64. decode(ChannelBuffer src, int off, int len, Base64Dialect dialect)static ChannelBufferBase64. decode(ChannelBuffer src, int off, int len, Base64Dialect dialect, ChannelBufferFactory bufferFactory)static ChannelBufferBase64. decode(ChannelBuffer src, Base64Dialect dialect)static ChannelBufferBase64. decode(ChannelBuffer src, Base64Dialect dialect, ChannelBufferFactory bufferFactory)private static intBase64. decode4to3(byte[] src, int srcOffset, ChannelBuffer dest, int destOffset, Base64Dialect dialect)static ChannelBufferBase64. encode(ChannelBuffer src, boolean breakLines, Base64Dialect dialect)static ChannelBufferBase64. encode(ChannelBuffer src, boolean breakLines, Base64Dialect dialect, ChannelBufferFactory bufferFactory)static ChannelBufferBase64. encode(ChannelBuffer src, int off, int len, boolean breakLines, Base64Dialect dialect)static ChannelBufferBase64. encode(ChannelBuffer src, int off, int len, boolean breakLines, Base64Dialect dialect, ChannelBufferFactory bufferFactory)static ChannelBufferBase64. encode(ChannelBuffer src, int off, int len, Base64Dialect dialect)static ChannelBufferBase64. encode(ChannelBuffer src, int off, int len, Base64Dialect dialect, ChannelBufferFactory bufferFactory)static ChannelBufferBase64. encode(ChannelBuffer src, Base64Dialect dialect)static ChannelBufferBase64. encode(ChannelBuffer src, Base64Dialect dialect, ChannelBufferFactory bufferFactory)private static voidBase64. encode3to4(ChannelBuffer src, int srcOffset, int numSigBytes, ChannelBuffer dest, int destOffset, Base64Dialect dialect)Constructors in org.jboss.netty.handler.codec.base64 with parameters of type Base64Dialect Constructor Description Base64Decoder(Base64Dialect dialect)Base64Encoder(boolean breakLines, Base64Dialect dialect)
-