public class io.netty.handler.codec.string.LineEncoder extends io.netty.handler.codec.MessageToMessageEncoder<java.lang.CharSequence>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.netty.handler.codec.string.LineEncoder
  super_class: io.netty.handler.codec.MessageToMessageEncoder
{
  private final java.nio.charset.Charset charset;
    descriptor: Ljava/nio/charset/Charset;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final byte[] lineSeparator;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.string.LineEncoder this
         0: .line 63
            aload 0 /* this */
            getstatic io.netty.handler.codec.string.LineSeparator.DEFAULT:Lio/netty/handler/codec/string/LineSeparator;
            getstatic io.netty.util.CharsetUtil.UTF_8:Ljava/nio/charset/Charset;
            invokespecial io.netty.handler.codec.string.LineEncoder.<init>:(Lio/netty/handler/codec/string/LineSeparator;Ljava/nio/charset/Charset;)V
         1: .line 64
            return
        end local 0 // io.netty.handler.codec.string.LineEncoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/handler/codec/string/LineEncoder;

  public void <init>(io.netty.handler.codec.string.LineSeparator);
    descriptor: (Lio/netty/handler/codec/string/LineSeparator;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.handler.codec.string.LineEncoder this
        start local 1 // io.netty.handler.codec.string.LineSeparator lineSeparator
         0: .line 70
            aload 0 /* this */
            aload 1 /* lineSeparator */
            getstatic io.netty.util.CharsetUtil.UTF_8:Ljava/nio/charset/Charset;
            invokespecial io.netty.handler.codec.string.LineEncoder.<init>:(Lio/netty/handler/codec/string/LineSeparator;Ljava/nio/charset/Charset;)V
         1: .line 71
            return
        end local 1 // io.netty.handler.codec.string.LineSeparator lineSeparator
        end local 0 // io.netty.handler.codec.string.LineEncoder this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/netty/handler/codec/string/LineEncoder;
            0    2     1  lineSeparator  Lio/netty/handler/codec/string/LineSeparator;
    MethodParameters:
               Name  Flags
      lineSeparator  

  public void <init>(java.nio.charset.Charset);
    descriptor: (Ljava/nio/charset/Charset;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.handler.codec.string.LineEncoder this
        start local 1 // java.nio.charset.Charset charset
         0: .line 77
            aload 0 /* this */
            getstatic io.netty.handler.codec.string.LineSeparator.DEFAULT:Lio/netty/handler/codec/string/LineSeparator;
            aload 1 /* charset */
            invokespecial io.netty.handler.codec.string.LineEncoder.<init>:(Lio/netty/handler/codec/string/LineSeparator;Ljava/nio/charset/Charset;)V
         1: .line 78
            return
        end local 1 // java.nio.charset.Charset charset
        end local 0 // io.netty.handler.codec.string.LineEncoder this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/netty/handler/codec/string/LineEncoder;
            0    2     1  charset  Ljava/nio/charset/Charset;
    MethodParameters:
         Name  Flags
      charset  

  public void <init>(io.netty.handler.codec.string.LineSeparator, java.nio.charset.Charset);
    descriptor: (Lio/netty/handler/codec/string/LineSeparator;Ljava/nio/charset/Charset;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.handler.codec.string.LineEncoder this
        start local 1 // io.netty.handler.codec.string.LineSeparator lineSeparator
        start local 2 // java.nio.charset.Charset charset
         0: .line 83
            aload 0 /* this */
            invokespecial io.netty.handler.codec.MessageToMessageEncoder.<init>:()V
         1: .line 84
            aload 0 /* this */
            aload 2 /* charset */
            ldc "charset"
            invokestatic io.netty.util.internal.ObjectUtil.checkNotNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast java.nio.charset.Charset
            putfield io.netty.handler.codec.string.LineEncoder.charset:Ljava/nio/charset/Charset;
         2: .line 85
            aload 0 /* this */
            aload 1 /* lineSeparator */
            ldc "lineSeparator"
            invokestatic io.netty.util.internal.ObjectUtil.checkNotNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast io.netty.handler.codec.string.LineSeparator
            invokevirtual io.netty.handler.codec.string.LineSeparator.value:()Ljava/lang/String;
            aload 2 /* charset */
            invokevirtual java.lang.String.getBytes:(Ljava/nio/charset/Charset;)[B
            putfield io.netty.handler.codec.string.LineEncoder.lineSeparator:[B
         3: .line 86
            return
        end local 2 // java.nio.charset.Charset charset
        end local 1 // io.netty.handler.codec.string.LineSeparator lineSeparator
        end local 0 // io.netty.handler.codec.string.LineEncoder this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lio/netty/handler/codec/string/LineEncoder;
            0    4     1  lineSeparator  Lio/netty/handler/codec/string/LineSeparator;
            0    4     2        charset  Ljava/nio/charset/Charset;
    MethodParameters:
               Name  Flags
      lineSeparator  
      charset        

  protected void encode(io.netty.channel.ChannelHandlerContext, java.lang.CharSequence, java.util.List<java.lang.Object>);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/CharSequence;Ljava/util/List;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // io.netty.handler.codec.string.LineEncoder this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // java.lang.CharSequence msg
        start local 3 // java.util.List out
         0: .line 90
            aload 1 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.alloc:()Lio/netty/buffer/ByteBufAllocator;
            aload 2 /* msg */
            invokestatic java.nio.CharBuffer.wrap:(Ljava/lang/CharSequence;)Ljava/nio/CharBuffer;
            aload 0 /* this */
            getfield io.netty.handler.codec.string.LineEncoder.charset:Ljava/nio/charset/Charset;
            aload 0 /* this */
            getfield io.netty.handler.codec.string.LineEncoder.lineSeparator:[B
            arraylength
            invokestatic io.netty.buffer.ByteBufUtil.encodeString:(Lio/netty/buffer/ByteBufAllocator;Ljava/nio/CharBuffer;Ljava/nio/charset/Charset;I)Lio/netty/buffer/ByteBuf;
            astore 4 /* buffer */
        start local 4 // io.netty.buffer.ByteBuf buffer
         1: .line 91
            aload 4 /* buffer */
            aload 0 /* this */
            getfield io.netty.handler.codec.string.LineEncoder.lineSeparator:[B
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:([B)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 92
            aload 3 /* out */
            aload 4 /* buffer */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         3: .line 93
            return
        end local 4 // io.netty.buffer.ByteBuf buffer
        end local 3 // java.util.List out
        end local 2 // java.lang.CharSequence msg
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.string.LineEncoder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lio/netty/handler/codec/string/LineEncoder;
            0    4     1     ctx  Lio/netty/channel/ChannelHandlerContext;
            0    4     2     msg  Ljava/lang/CharSequence;
            0    4     3     out  Ljava/util/List<Ljava/lang/Object;>;
            1    4     4  buffer  Lio/netty/buffer/ByteBuf;
    Exceptions:
      throws java.lang.Exception
    Signature: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/CharSequence;Ljava/util/List<Ljava/lang/Object;>;)V
    MethodParameters:
      Name  Flags
      ctx   
      msg   
      out   

  protected void encode(io.netty.channel.ChannelHandlerContext, java.lang.Object, java.util.List);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Ljava/util/List;)V
    flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            aload 2
            checkcast java.lang.CharSequence
            aload 3
            invokevirtual io.netty.handler.codec.string.LineEncoder.encode:(Lio/netty/channel/ChannelHandlerContext;Ljava/lang/CharSequence;Ljava/util/List;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.Exception
}
Signature: Lio/netty/handler/codec/MessageToMessageEncoder<Ljava/lang/CharSequence;>;
SourceFile: "LineEncoder.java"
InnerClasses:
  public abstract Sharable = io.netty.channel.ChannelHandler$Sharable of io.netty.channel.ChannelHandler
    RuntimeVisibleAnnotations: 
      io.netty.channel.ChannelHandler$Sharable()