public class com.opencsv.CSVWriter extends com.opencsv.AbstractCSVWriter
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.opencsv.CSVWriter
  super_class: com.opencsv.AbstractCSVWriter
{
  protected final char separator;
    descriptor: C
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final char quotechar;
    descriptor: C
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final char escapechar;
    descriptor: C
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  public void <init>(java.io.Writer);
    descriptor: (Ljava/io/Writer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // com.opencsv.CSVWriter this
        start local 1 // java.io.Writer writer
         0: .line 39
            aload 0 /* this */
            aload 1 /* writer */
            bipush 44
            bipush 34
            bipush 34
            ldc "\n"
            invokespecial com.opencsv.CSVWriter.<init>:(Ljava/io/Writer;CCCLjava/lang/String;)V
         1: .line 40
            return
        end local 1 // java.io.Writer writer
        end local 0 // com.opencsv.CSVWriter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/opencsv/CSVWriter;
            0    2     1  writer  Ljava/io/Writer;
    MethodParameters:
        Name  Flags
      writer  

  public void <init>(java.io.Writer, char, char, char, java.lang.String);
    descriptor: (Ljava/io/Writer;CCCLjava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=6
        start local 0 // com.opencsv.CSVWriter this
        start local 1 // java.io.Writer writer
        start local 2 // char separator
        start local 3 // char quotechar
        start local 4 // char escapechar
        start local 5 // java.lang.String lineEnd
         0: .line 52
            aload 0 /* this */
            aload 1 /* writer */
            aload 5 /* lineEnd */
            invokespecial com.opencsv.AbstractCSVWriter.<init>:(Ljava/io/Writer;Ljava/lang/String;)V
         1: .line 53
            aload 0 /* this */
            iload 4 /* escapechar */
            putfield com.opencsv.CSVWriter.escapechar:C
         2: .line 54
            aload 0 /* this */
            iload 3 /* quotechar */
            putfield com.opencsv.CSVWriter.quotechar:C
         3: .line 55
            aload 0 /* this */
            iload 2 /* separator */
            putfield com.opencsv.CSVWriter.separator:C
         4: .line 56
            return
        end local 5 // java.lang.String lineEnd
        end local 4 // char escapechar
        end local 3 // char quotechar
        end local 2 // char separator
        end local 1 // java.io.Writer writer
        end local 0 // com.opencsv.CSVWriter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/opencsv/CSVWriter;
            0    5     1      writer  Ljava/io/Writer;
            0    5     2   separator  C
            0    5     3   quotechar  C
            0    5     4  escapechar  C
            0    5     5     lineEnd  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      writer      
      separator   
      quotechar   
      escapechar  
      lineEnd     

  protected void writeNext(java.lang.String[], boolean, java.lang.Appendable);
    descriptor: ([Ljava/lang/String;ZLjava/lang/Appendable;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // com.opencsv.CSVWriter this
        start local 1 // java.lang.String[] nextLine
        start local 2 // boolean applyQuotesToAll
        start local 3 // java.lang.Appendable appendable
         0: .line 61
            aload 1 /* nextLine */
            ifnonnull 2
         1: .line 62
            return
         2: .line 65
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         3: goto 17
         4: .line 67
      StackMap locals: int
      StackMap stack:
            iload 4 /* i */
            ifeq 6
         5: .line 68
            aload 3 /* appendable */
            aload 0 /* this */
            getfield com.opencsv.CSVWriter.separator:C
            invokeinterface java.lang.Appendable.append:(C)Ljava/lang/Appendable;
            pop
         6: .line 71
      StackMap locals:
      StackMap stack:
            aload 1 /* nextLine */
            iload 4 /* i */
            aaload
            astore 5 /* nextElement */
        start local 5 // java.lang.String nextElement
         7: .line 73
            aload 5 /* nextElement */
            ifnonnull 9
         8: .line 74
            goto 16
         9: .line 77
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            aload 5 /* nextElement */
            invokevirtual com.opencsv.CSVWriter.stringContainsSpecialCharacters:(Ljava/lang/String;)Z
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            astore 6 /* stringContainsSpecialCharacters */
        start local 6 // java.lang.Boolean stringContainsSpecialCharacters
        10: .line 79
            aload 0 /* this */
            iload 2 /* applyQuotesToAll */
            aload 3 /* appendable */
            aload 6 /* stringContainsSpecialCharacters */
            invokevirtual com.opencsv.CSVWriter.appendQuoteCharacterIfNeeded:(ZLjava/lang/Appendable;Ljava/lang/Boolean;)V
        11: .line 81
            aload 6 /* stringContainsSpecialCharacters */
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ifeq 14
        12: .line 82
            aload 0 /* this */
            aload 5 /* nextElement */
            aload 3 /* appendable */
            invokevirtual com.opencsv.CSVWriter.processLine:(Ljava/lang/String;Ljava/lang/Appendable;)V
        13: .line 83
            goto 15
        14: .line 84
      StackMap locals: java.lang.Boolean
      StackMap stack:
            aload 3 /* appendable */
            aload 5 /* nextElement */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        15: .line 87
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* applyQuotesToAll */
            aload 3 /* appendable */
            aload 6 /* stringContainsSpecialCharacters */
            invokevirtual com.opencsv.CSVWriter.appendQuoteCharacterIfNeeded:(ZLjava/lang/Appendable;Ljava/lang/Boolean;)V
        end local 6 // java.lang.Boolean stringContainsSpecialCharacters
        end local 5 // java.lang.String nextElement
        16: .line 65
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 4 /* i */
            aload 1 /* nextLine */
            arraylength
            if_icmplt 4
        end local 4 // int i
        18: .line 90
            aload 3 /* appendable */
            aload 0 /* this */
            getfield com.opencsv.CSVWriter.lineEnd:Ljava/lang/String;
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        19: .line 91
            aload 0 /* this */
            getfield com.opencsv.CSVWriter.writer:Ljava/io/Writer;
            aload 3 /* appendable */
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
        20: .line 92
            return
        end local 3 // java.lang.Appendable appendable
        end local 2 // boolean applyQuotesToAll
        end local 1 // java.lang.String[] nextLine
        end local 0 // com.opencsv.CSVWriter this
      LocalVariableTable:
        Start  End  Slot                             Name  Signature
            0   21     0                             this  Lcom/opencsv/CSVWriter;
            0   21     1                         nextLine  [Ljava/lang/String;
            0   21     2                 applyQuotesToAll  Z
            0   21     3                       appendable  Ljava/lang/Appendable;
            3   18     4                                i  I
            7   16     5                      nextElement  Ljava/lang/String;
           10   16     6  stringContainsSpecialCharacters  Ljava/lang/Boolean;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                  Name  Flags
      nextLine          
      applyQuotesToAll  
      appendable        

  private void appendQuoteCharacterIfNeeded(boolean, java.lang.Appendable, java.lang.Boolean);
    descriptor: (ZLjava/lang/Appendable;Ljava/lang/Boolean;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // com.opencsv.CSVWriter this
        start local 1 // boolean applyQuotesToAll
        start local 2 // java.lang.Appendable appendable
        start local 3 // java.lang.Boolean stringContainsSpecialCharacters
         0: .line 95
            iload 1 /* applyQuotesToAll */
            ifne 1
            aload 3 /* stringContainsSpecialCharacters */
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ifeq 3
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield com.opencsv.CSVWriter.quotechar:C
            ifeq 3
         2: .line 96
            aload 2 /* appendable */
            aload 0 /* this */
            getfield com.opencsv.CSVWriter.quotechar:C
            invokeinterface java.lang.Appendable.append:(C)Ljava/lang/Appendable;
            pop
         3: .line 98
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.lang.Boolean stringContainsSpecialCharacters
        end local 2 // java.lang.Appendable appendable
        end local 1 // boolean applyQuotesToAll
        end local 0 // com.opencsv.CSVWriter this
      LocalVariableTable:
        Start  End  Slot                             Name  Signature
            0    4     0                             this  Lcom/opencsv/CSVWriter;
            0    4     1                 applyQuotesToAll  Z
            0    4     2                       appendable  Ljava/lang/Appendable;
            0    4     3  stringContainsSpecialCharacters  Ljava/lang/Boolean;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                                 Name  Flags
      applyQuotesToAll                 
      appendable                       
      stringContainsSpecialCharacters  

  protected boolean stringContainsSpecialCharacters(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.opencsv.CSVWriter this
        start local 1 // java.lang.String line
         0: .line 106
            aload 1 /* line */
            aload 0 /* this */
            getfield com.opencsv.CSVWriter.quotechar:C
            invokevirtual java.lang.String.indexOf:(I)I
            iconst_m1
            if_icmpne 6
         1: .line 107
            aload 1 /* line */
            aload 0 /* this */
            getfield com.opencsv.CSVWriter.escapechar:C
            invokevirtual java.lang.String.indexOf:(I)I
            iconst_m1
            if_icmpne 6
         2: .line 108
            aload 1 /* line */
            aload 0 /* this */
            getfield com.opencsv.CSVWriter.separator:C
            invokevirtual java.lang.String.indexOf:(I)I
            iconst_m1
            if_icmpne 6
         3: .line 109
            aload 1 /* line */
            ldc "\n"
            invokevirtual java.lang.String.contains:(Ljava/lang/CharSequence;)Z
            ifne 6
         4: .line 110
            aload 1 /* line */
            ldc "\r"
            invokevirtual java.lang.String.contains:(Ljava/lang/CharSequence;)Z
            ifne 6
         5: .line 106
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         6: iconst_1
            ireturn
        end local 1 // java.lang.String line
        end local 0 // com.opencsv.CSVWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/opencsv/CSVWriter;
            0    7     1  line  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      line  

  protected void processLine(java.lang.String, java.lang.Appendable);
    descriptor: (Ljava/lang/String;Ljava/lang/Appendable;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // com.opencsv.CSVWriter this
        start local 1 // java.lang.String nextElement
        start local 2 // java.lang.Appendable appendable
         0: .line 120
            iconst_0
            istore 3 /* j */
        start local 3 // int j
         1: goto 5
         2: .line 121
      StackMap locals: int
      StackMap stack:
            aload 1 /* nextElement */
            iload 3 /* j */
            invokevirtual java.lang.String.charAt:(I)C
            istore 4 /* nextChar */
        start local 4 // char nextChar
         3: .line 122
            aload 0 /* this */
            aload 2 /* appendable */
            iload 4 /* nextChar */
            invokevirtual com.opencsv.CSVWriter.processCharacter:(Ljava/lang/Appendable;C)V
        end local 4 // char nextChar
         4: .line 120
            iinc 3 /* j */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* j */
            aload 1 /* nextElement */
            invokevirtual java.lang.String.length:()I
            if_icmplt 2
        end local 3 // int j
         6: .line 124
            return
        end local 2 // java.lang.Appendable appendable
        end local 1 // java.lang.String nextElement
        end local 0 // com.opencsv.CSVWriter this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Lcom/opencsv/CSVWriter;
            0    7     1  nextElement  Ljava/lang/String;
            0    7     2   appendable  Ljava/lang/Appendable;
            1    6     3            j  I
            3    4     4     nextChar  C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
             Name  Flags
      nextElement  
      appendable   

  protected void processCharacter(java.lang.Appendable, char);
    descriptor: (Ljava/lang/Appendable;C)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.opencsv.CSVWriter this
        start local 1 // java.lang.Appendable appendable
        start local 2 // char nextChar
         0: .line 133
            aload 0 /* this */
            getfield com.opencsv.CSVWriter.escapechar:C
            ifeq 2
            aload 0 /* this */
            iload 2 /* nextChar */
            invokevirtual com.opencsv.CSVWriter.checkCharactersToEscape:(C)Z
            ifeq 2
         1: .line 134
            aload 1 /* appendable */
            aload 0 /* this */
            getfield com.opencsv.CSVWriter.escapechar:C
            invokeinterface java.lang.Appendable.append:(C)Ljava/lang/Appendable;
            pop
         2: .line 136
      StackMap locals:
      StackMap stack:
            aload 1 /* appendable */
            iload 2 /* nextChar */
            invokeinterface java.lang.Appendable.append:(C)Ljava/lang/Appendable;
            pop
         3: .line 137
            return
        end local 2 // char nextChar
        end local 1 // java.lang.Appendable appendable
        end local 0 // com.opencsv.CSVWriter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lcom/opencsv/CSVWriter;
            0    4     1  appendable  Ljava/lang/Appendable;
            0    4     2    nextChar  C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
            Name  Flags
      appendable  
      nextChar    

  protected boolean checkCharactersToEscape(char);
    descriptor: (C)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.opencsv.CSVWriter this
        start local 1 // char nextChar
         0: .line 148
            aload 0 /* this */
            getfield com.opencsv.CSVWriter.quotechar:C
            ifne 3
         1: .line 149
            iload 1 /* nextChar */
            aload 0 /* this */
            getfield com.opencsv.CSVWriter.quotechar:C
            if_icmpeq 2
            iload 1 /* nextChar */
            aload 0 /* this */
            getfield com.opencsv.CSVWriter.escapechar:C
            if_icmpeq 2
            iload 1 /* nextChar */
            aload 0 /* this */
            getfield com.opencsv.CSVWriter.separator:C
            if_icmpeq 2
            iload 1 /* nextChar */
            bipush 10
            if_icmpeq 2
            iconst_0
            goto 6
      StackMap locals:
      StackMap stack:
         2: iconst_1
            goto 6
         3: .line 150
      StackMap locals:
      StackMap stack:
            iload 1 /* nextChar */
            aload 0 /* this */
            getfield com.opencsv.CSVWriter.quotechar:C
            if_icmpeq 5
            iload 1 /* nextChar */
            aload 0 /* this */
            getfield com.opencsv.CSVWriter.escapechar:C
            if_icmpeq 5
         4: .line 148
            iconst_0
            goto 6
      StackMap locals:
      StackMap stack:
         5: iconst_1
      StackMap locals:
      StackMap stack: int
         6: ireturn
        end local 1 // char nextChar
        end local 0 // com.opencsv.CSVWriter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lcom/opencsv/CSVWriter;
            0    7     1  nextChar  C
    MethodParameters:
          Name  Flags
      nextChar  
}
SourceFile: "CSVWriter.java"