public abstract class sun.io.CharToByteConverter
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: sun.io.CharToByteConverter
  super_class: java.lang.Object
{
  protected boolean subMode;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  protected byte[] subBytes;
    descriptor: [B
    flags: (0x0004) ACC_PROTECTED

  protected int charOff;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int byteOff;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int badInputLength;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // sun.io.CharToByteConverter this
         0: .line 42
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 47
            aload 0 /* this */
            iconst_1
            putfield sun.io.CharToByteConverter.subMode:Z
         2: .line 52
            aload 0 /* this */
            iconst_1
            newarray 8
            dup
            iconst_0
            bipush 63
            bastore
            putfield sun.io.CharToByteConverter.subBytes:[B
         3: .line 42
            return
        end local 0 // sun.io.CharToByteConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/io/CharToByteConverter;

  public static sun.io.CharToByteConverter getDefault();
    descriptor: ()Lsun/io/CharToByteConverter;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=0
         0: .line 74
            iconst_1
            invokestatic sun.io.Converters.newDefaultConverter:(I)Ljava/lang/Object;
            astore 0 /* cvt */
        start local 0 // java.lang.Object cvt
         1: .line 75
            aload 0 /* cvt */
            checkcast sun.io.CharToByteConverter
            areturn
        end local 0 // java.lang.Object cvt
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            1    2     0   cvt  Ljava/lang/Object;

  public static sun.io.CharToByteConverter getConverter(java.lang.String);
    descriptor: (Ljava/lang/String;)Lsun/io/CharToByteConverter;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.lang.String encoding
         0: .line 86
            iconst_1
            aload 0 /* encoding */
            invokestatic sun.io.Converters.newConverter:(ILjava/lang/String;)Ljava/lang/Object;
            astore 1 /* cvt */
        start local 1 // java.lang.Object cvt
         1: .line 87
            aload 1 /* cvt */
            checkcast sun.io.CharToByteConverter
            areturn
        end local 1 // java.lang.Object cvt
        end local 0 // java.lang.String encoding
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0  encoding  Ljava/lang/String;
            1    2     1       cvt  Ljava/lang/Object;
    Exceptions:
      throws java.io.UnsupportedEncodingException
    MethodParameters:
          Name  Flags
      encoding  

  public abstract java.lang.String getCharacterEncoding();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract int convert(char[], int, int, byte[], int, int);
    descriptor: ([CII[BII)I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws sun.io.MalformedInputException, sun.io.UnknownCharacterException, sun.io.ConversionBufferFullException
    MethodParameters:
          Name  Flags
      input     
      inStart   
      inEnd     
      output    
      outStart  
      outEnd    

  public int convertAny(char[], int, int, byte[], int, int);
    descriptor: ([CII[BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=12, args_size=7
        start local 0 // sun.io.CharToByteConverter this
        start local 1 // char[] input
        start local 2 // int inStart
        start local 3 // int inEnd
        start local 4 // byte[] output
        start local 5 // int outStart
        start local 6 // int outEnd
         0: .line 151
            aload 0 /* this */
            getfield sun.io.CharToByteConverter.subMode:Z
            ifne 2
         1: .line 152
            new java.lang.IllegalStateException
            dup
            ldc "Substitution mode is not on"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 157
      StackMap locals:
      StackMap stack:
            iload 2 /* inStart */
            istore 7 /* localInOff */
        start local 7 // int localInOff
         3: .line 158
            iload 5 /* outStart */
            istore 8 /* localOutOff */
        start local 8 // int localOutOff
         4: .line 159
            goto 31
         5: .line 161
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* input */
            iload 7 /* localInOff */
            iload 3 /* inEnd */
         6: .line 162
            aload 4 /* output */
            iload 8 /* localOutOff */
            iload 6 /* outEnd */
         7: .line 161
            invokevirtual sun.io.CharToByteConverter.convert:([CII[BII)I
            pop
         8: .line 163
            aload 0 /* this */
            invokevirtual sun.io.CharToByteConverter.nextByteIndex:()I
            iload 5 /* outStart */
            isub
         9: ireturn
        10: .line 164
      StackMap locals:
      StackMap stack: sun.io.MalformedInputException
            pop
        11: .line 165
            aload 0 /* this */
            getfield sun.io.CharToByteConverter.subBytes:[B
            astore 9 /* s */
        start local 9 // byte[] s
        12: .line 166
            aload 9 /* s */
            arraylength
            istore 10 /* subSize */
        start local 10 // int subSize
        13: .line 167
            aload 0 /* this */
            invokevirtual sun.io.CharToByteConverter.nextByteIndex:()I
            istore 8 /* localOutOff */
        14: .line 168
            iload 8 /* localOutOff */
            iload 10 /* subSize */
            iadd
            iload 6 /* outEnd */
            if_icmple 16
        15: .line 169
            new sun.io.ConversionBufferFullException
            dup
            invokespecial sun.io.ConversionBufferFullException.<init>:()V
            athrow
        16: .line 170
      StackMap locals: byte[] int
      StackMap stack:
            iconst_0
            istore 11 /* i */
        start local 11 // int i
        17: goto 20
        18: .line 171
      StackMap locals: int
      StackMap stack:
            aload 4 /* output */
            iload 8 /* localOutOff */
            iinc 8 /* localOutOff */ 1
            aload 9 /* s */
            iload 11 /* i */
            baload
            bastore
        19: .line 170
            iinc 11 /* i */ 1
      StackMap locals:
      StackMap stack:
        20: iload 11 /* i */
            iload 10 /* subSize */
            if_icmplt 18
        end local 11 // int i
        21: .line 172
            aload 0 /* this */
            invokevirtual sun.io.CharToByteConverter.nextCharIndex:()I
            istore 7 /* localInOff */
        22: .line 173
            iload 7 /* localInOff */
            aload 0 /* this */
            getfield sun.io.CharToByteConverter.badInputLength:I
            iadd
            istore 7 /* localInOff */
        23: .line 174
            aload 0 /* this */
            iconst_0
            putfield sun.io.CharToByteConverter.badInputLength:I
        24: .line 175
            iload 7 /* localInOff */
            iload 3 /* inEnd */
            if_icmplt 31
        25: .line 176
            aload 0 /* this */
            iload 8 /* localOutOff */
            putfield sun.io.CharToByteConverter.byteOff:I
        26: .line 177
            aload 0 /* this */
            getfield sun.io.CharToByteConverter.byteOff:I
            iload 5 /* outStart */
            isub
            ireturn
        end local 10 // int subSize
        end local 9 // byte[] s
        27: .line 180
      StackMap locals: sun.io.CharToByteConverter char[] int int byte[] int int int int
      StackMap stack: sun.io.UnknownCharacterException
            astore 9 /* e */
        start local 9 // sun.io.UnknownCharacterException e
        28: .line 182
            new java.lang.Error
            dup
            ldc "UnknownCharacterException thrown in substititution mode"
        29: .line 184
            aload 9 /* e */
        30: .line 182
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 9 // sun.io.UnknownCharacterException e
        31: .line 159
      StackMap locals:
      StackMap stack:
            iload 7 /* localInOff */
            iload 3 /* inEnd */
            if_icmplt 5
        32: .line 187
            aload 0 /* this */
            invokevirtual sun.io.CharToByteConverter.nextByteIndex:()I
            iload 5 /* outStart */
            isub
            ireturn
        end local 8 // int localOutOff
        end local 7 // int localInOff
        end local 6 // int outEnd
        end local 5 // int outStart
        end local 4 // byte[] output
        end local 3 // int inEnd
        end local 2 // int inStart
        end local 1 // char[] input
        end local 0 // sun.io.CharToByteConverter this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   33     0         this  Lsun/io/CharToByteConverter;
            0   33     1        input  [C
            0   33     2      inStart  I
            0   33     3        inEnd  I
            0   33     4       output  [B
            0   33     5     outStart  I
            0   33     6       outEnd  I
            3   33     7   localInOff  I
            4   33     8  localOutOff  I
           12   27     9            s  [B
           13   27    10      subSize  I
           17   21    11            i  I
           28   31     9            e  Lsun/io/UnknownCharacterException;
      Exception table:
        from    to  target  type
           5     9      10  Class sun.io.MalformedInputException
           5     9      27  Class sun.io.UnknownCharacterException
    Exceptions:
      throws sun.io.ConversionBufferFullException
    MethodParameters:
          Name  Flags
      input     
      inStart   
      inEnd     
      output    
      outStart  
      outEnd    

  public byte[] convertAll(char[]);
    descriptor: ([C)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=8, args_size=2
        start local 0 // sun.io.CharToByteConverter this
        start local 1 // char[] input
         0: .line 224
            aload 0 /* this */
            invokevirtual sun.io.CharToByteConverter.reset:()V
         1: .line 225
            aload 0 /* this */
            getfield sun.io.CharToByteConverter.subMode:Z
            istore 2 /* savedSubMode */
        start local 2 // boolean savedSubMode
         2: .line 226
            aload 0 /* this */
            iconst_1
            putfield sun.io.CharToByteConverter.subMode:Z
         3: .line 228
            aload 0 /* this */
            invokevirtual sun.io.CharToByteConverter.getMaxBytesPerChar:()I
            aload 1 /* input */
            arraylength
            imul
            newarray 8
            astore 3 /* output */
        start local 3 // byte[] output
         4: .line 231
            aload 0 /* this */
            aload 1 /* input */
            iconst_0
            aload 1 /* input */
            arraylength
         5: .line 232
            aload 3 /* output */
            iconst_0
            aload 3 /* output */
            arraylength
         6: .line 231
            invokevirtual sun.io.CharToByteConverter.convert:([CII[BII)I
            istore 4 /* outputLength */
        start local 4 // int outputLength
         7: .line 233
            iload 4 /* outputLength */
            aload 0 /* this */
            aload 3 /* output */
            aload 0 /* this */
            invokevirtual sun.io.CharToByteConverter.nextByteIndex:()I
            aload 3 /* output */
            arraylength
            invokevirtual sun.io.CharToByteConverter.flush:([BII)I
            iadd
            istore 4 /* outputLength */
         8: .line 235
            iload 4 /* outputLength */
            newarray 8
            astore 5 /* returnedOutput */
        start local 5 // byte[] returnedOutput
         9: .line 236
            aload 3 /* output */
            iconst_0
            aload 5 /* returnedOutput */
            iconst_0
            iload 4 /* outputLength */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        10: .line 237
            aload 5 /* returnedOutput */
            astore 7
        11: .line 249
            aload 0 /* this */
            iload 2 /* savedSubMode */
            putfield sun.io.CharToByteConverter.subMode:Z
        12: .line 237
            aload 7
            areturn
        end local 5 // byte[] returnedOutput
        end local 4 // int outputLength
        13: .line 239
      StackMap locals: sun.io.CharToByteConverter char[] int byte[]
      StackMap stack: sun.io.ConversionBufferFullException
            pop
        14: .line 242
            new java.lang.InternalError
            dup
            ldc "this.getMaxBytesPerChar returned bad value"
        15: .line 241
            invokespecial java.lang.InternalError.<init>:(Ljava/lang/String;)V
            athrow
        16: .line 244
      StackMap locals:
      StackMap stack: sun.io.UnknownCharacterException
            pop
        17: .line 246
            new java.lang.InternalError
            dup
            invokespecial java.lang.InternalError.<init>:()V
            athrow
        18: .line 248
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 6
        19: .line 249
            aload 0 /* this */
            iload 2 /* savedSubMode */
            putfield sun.io.CharToByteConverter.subMode:Z
        20: .line 250
            aload 6
            athrow
        end local 3 // byte[] output
        end local 2 // boolean savedSubMode
        end local 1 // char[] input
        end local 0 // sun.io.CharToByteConverter this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   21     0            this  Lsun/io/CharToByteConverter;
            0   21     1           input  [C
            2   21     2    savedSubMode  Z
            4   21     3          output  [B
            7   13     4    outputLength  I
            9   13     5  returnedOutput  [B
      Exception table:
        from    to  target  type
           4    11      13  Class sun.io.ConversionBufferFullException
           4    11      16  Class sun.io.UnknownCharacterException
           4    11      18  any
          13    18      18  any
    Exceptions:
      throws sun.io.MalformedInputException
    MethodParameters:
       Name  Flags
      input  

  public abstract int flush(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws sun.io.MalformedInputException, sun.io.ConversionBufferFullException
    MethodParameters:
          Name  Flags
      output    
      outStart  
      outEnd    

  public int flushAny(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=4
        start local 0 // sun.io.CharToByteConverter this
        start local 1 // byte[] output
        start local 2 // int outStart
        start local 3 // int outEnd
         0: .line 292
            aload 0 /* this */
            getfield sun.io.CharToByteConverter.subMode:Z
            ifne 2
         1: .line 293
            new java.lang.IllegalStateException
            dup
            ldc "Substitution mode is not on"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 296
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* output */
            iload 2 /* outStart */
            iload 3 /* outEnd */
            invokevirtual sun.io.CharToByteConverter.flush:([BII)I
         3: ireturn
         4: .line 297
      StackMap locals:
      StackMap stack: sun.io.MalformedInputException
            pop
         5: .line 304
            aload 0 /* this */
            getfield sun.io.CharToByteConverter.subBytes:[B
            arraylength
            istore 4 /* subSize */
        start local 4 // int subSize
         6: .line 305
            aload 0 /* this */
            getfield sun.io.CharToByteConverter.subBytes:[B
            astore 5 /* s */
        start local 5 // byte[] s
         7: .line 306
            iload 2 /* outStart */
            istore 6 /* outIndex */
        start local 6 // int outIndex
         8: .line 307
            iload 2 /* outStart */
            iload 4 /* subSize */
            iadd
            iload 3 /* outEnd */
            if_icmple 10
         9: .line 308
            new sun.io.ConversionBufferFullException
            dup
            invokespecial sun.io.ConversionBufferFullException.<init>:()V
            athrow
        10: .line 309
      StackMap locals: int byte[] int
      StackMap stack:
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        11: goto 14
        12: .line 310
      StackMap locals: int
      StackMap stack:
            aload 1 /* output */
            iload 6 /* outIndex */
            iinc 6 /* outIndex */ 1
            aload 5 /* s */
            iload 7 /* i */
            baload
            bastore
        13: .line 309
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 7 /* i */
            iload 4 /* subSize */
            if_icmplt 12
        end local 7 // int i
        15: .line 311
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield sun.io.CharToByteConverter.charOff:I
            putfield sun.io.CharToByteConverter.byteOff:I
        16: .line 312
            aload 0 /* this */
            iconst_0
            putfield sun.io.CharToByteConverter.badInputLength:I
        17: .line 313
            iload 4 /* subSize */
            ireturn
        end local 6 // int outIndex
        end local 5 // byte[] s
        end local 4 // int subSize
        end local 3 // int outEnd
        end local 2 // int outStart
        end local 1 // byte[] output
        end local 0 // sun.io.CharToByteConverter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   18     0      this  Lsun/io/CharToByteConverter;
            0   18     1    output  [B
            0   18     2  outStart  I
            0   18     3    outEnd  I
            6   18     4   subSize  I
            7   18     5         s  [B
            8   18     6  outIndex  I
           11   15     7         i  I
      Exception table:
        from    to  target  type
           2     3       4  Class sun.io.MalformedInputException
    Exceptions:
      throws sun.io.ConversionBufferFullException
    MethodParameters:
          Name  Flags
      output    
      outStart  
      outEnd    

  public abstract void reset();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public boolean canConvert(char);
    descriptor: (C)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=2
        start local 0 // sun.io.CharToByteConverter this
        start local 1 // char c
         0: .line 331
            iconst_1
            newarray 5
            astore 2 /* input */
        start local 2 // char[] input
         1: .line 332
            iconst_3
            newarray 8
            astore 3 /* output */
        start local 3 // byte[] output
         2: .line 333
            aload 2 /* input */
            iconst_0
            iload 1 /* c */
            castore
         3: .line 334
            aload 0 /* this */
            aload 2 /* input */
            iconst_0
            iconst_1
            aload 3 /* output */
            iconst_0
            iconst_3
            invokevirtual sun.io.CharToByteConverter.convert:([CII[BII)I
            pop
         4: .line 335
            iconst_1
            ireturn
        end local 3 // byte[] output
        end local 2 // char[] input
         5: .line 336
      StackMap locals:
      StackMap stack: java.io.CharConversionException
            pop
         6: .line 337
            iconst_0
            ireturn
        end local 1 // char c
        end local 0 // sun.io.CharToByteConverter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lsun/io/CharToByteConverter;
            0    7     1       c  C
            1    5     2   input  [C
            2    5     3  output  [B
      Exception table:
        from    to  target  type
           0     4       5  Class java.io.CharConversionException
    MethodParameters:
      Name  Flags
      c     

  public abstract int getMaxBytesPerChar();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public int getBadInputLength();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.io.CharToByteConverter this
         0: .line 355
            aload 0 /* this */
            getfield sun.io.CharToByteConverter.badInputLength:I
            ireturn
        end local 0 // sun.io.CharToByteConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/io/CharToByteConverter;

  public int nextCharIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.io.CharToByteConverter this
         0: .line 364
            aload 0 /* this */
            getfield sun.io.CharToByteConverter.charOff:I
            ireturn
        end local 0 // sun.io.CharToByteConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/io/CharToByteConverter;

  public int nextByteIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.io.CharToByteConverter this
         0: .line 372
            aload 0 /* this */
            getfield sun.io.CharToByteConverter.byteOff:I
            ireturn
        end local 0 // sun.io.CharToByteConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/io/CharToByteConverter;

  public void setSubstitutionMode(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.io.CharToByteConverter this
        start local 1 // boolean doSub
         0: .line 386
            aload 0 /* this */
            iload 1 /* doSub */
            putfield sun.io.CharToByteConverter.subMode:Z
         1: .line 387
            return
        end local 1 // boolean doSub
        end local 0 // sun.io.CharToByteConverter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lsun/io/CharToByteConverter;
            0    2     1  doSub  Z
    MethodParameters:
       Name  Flags
      doSub  

  public void setSubstitutionBytes(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // sun.io.CharToByteConverter this
        start local 1 // byte[] newSubBytes
         0: .line 405
            aload 1 /* newSubBytes */
            arraylength
            aload 0 /* this */
            invokevirtual sun.io.CharToByteConverter.getMaxBytesPerChar:()I
            if_icmple 2
         1: .line 406
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 409
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* newSubBytes */
            arraylength
            newarray 8
            putfield sun.io.CharToByteConverter.subBytes:[B
         3: .line 410
            aload 1 /* newSubBytes */
            iconst_0
            aload 0 /* this */
            getfield sun.io.CharToByteConverter.subBytes:[B
            iconst_0
            aload 1 /* newSubBytes */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 411
            return
        end local 1 // byte[] newSubBytes
        end local 0 // sun.io.CharToByteConverter this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lsun/io/CharToByteConverter;
            0    5     1  newSubBytes  [B
    Exceptions:
      throws java.lang.IllegalArgumentException
    MethodParameters:
             Name  Flags
      newSubBytes  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.io.CharToByteConverter this
         0: .line 417
            new java.lang.StringBuilder
            dup
            ldc "CharToByteConverter: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual sun.io.CharToByteConverter.getCharacterEncoding:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // sun.io.CharToByteConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/io/CharToByteConverter;
}
SourceFile: "CharToByteConverter.java"
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()