public class com.opencsv.CSVIterator implements java.util.Iterator<java.lang.String[]>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.opencsv.CSVIterator
  super_class: java.lang.Object
{
  private final com.opencsv.CSVReader reader;
    descriptor: Lcom/opencsv/CSVReader;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.lang.String[] nextLine;
    descriptor: [Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.util.Locale errorLocale;
    descriptor: Ljava/util/Locale;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(com.opencsv.CSVReader);
    descriptor: (Lcom/opencsv/CSVReader;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.opencsv.CSVIterator this
        start local 1 // com.opencsv.CSVReader reader
         0: .line 30
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 23
            aload 0 /* this */
            invokestatic java.util.Locale.getDefault:()Ljava/util/Locale;
            putfield com.opencsv.CSVIterator.errorLocale:Ljava/util/Locale;
         2: .line 31
            aload 0 /* this */
            aload 1 /* reader */
            putfield com.opencsv.CSVIterator.reader:Lcom/opencsv/CSVReader;
         3: .line 32
            aload 0 /* this */
            aload 1 /* reader */
            invokevirtual com.opencsv.CSVReader.readNext:()[Ljava/lang/String;
            putfield com.opencsv.CSVIterator.nextLine:[Ljava/lang/String;
         4: .line 33
            return
        end local 1 // com.opencsv.CSVReader reader
        end local 0 // com.opencsv.CSVIterator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lcom/opencsv/CSVIterator;
            0    5     1  reader  Lcom/opencsv/CSVReader;
    Exceptions:
      throws java.io.IOException, com.opencsv.exceptions.CsvValidationException
    MethodParameters:
        Name  Flags
      reader  

  public void setErrorLocale(java.util.Locale);
    descriptor: (Ljava/util/Locale;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.opencsv.CSVIterator this
        start local 1 // java.util.Locale errorLocale
         0: .line 42
            aload 0 /* this */
            aload 1 /* errorLocale */
            invokestatic java.util.Locale.getDefault:()Ljava/util/Locale;
            invokestatic org.apache.commons.lang3.ObjectUtils.defaultIfNull:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.Locale
            putfield com.opencsv.CSVIterator.errorLocale:Ljava/util/Locale;
         1: .line 43
            return
        end local 1 // java.util.Locale errorLocale
        end local 0 // com.opencsv.CSVIterator this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lcom/opencsv/CSVIterator;
            0    2     1  errorLocale  Ljava/util/Locale;
    MethodParameters:
             Name  Flags
      errorLocale  

  public boolean hasNext();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.opencsv.CSVIterator this
         0: .line 54
            aload 0 /* this */
            getfield com.opencsv.CSVIterator.nextLine:[Ljava/lang/String;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.opencsv.CSVIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/opencsv/CSVIterator;

  public java.lang.String[] next();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // com.opencsv.CSVIterator this
         0: .line 65
            aload 0 /* this */
            getfield com.opencsv.CSVIterator.nextLine:[Ljava/lang/String;
            astore 1 /* temp */
        start local 1 // java.lang.String[] temp
         1: .line 67
            aload 0 /* this */
            aload 0 /* this */
            getfield com.opencsv.CSVIterator.reader:Lcom/opencsv/CSVReader;
            invokevirtual com.opencsv.CSVReader.readNext:()[Ljava/lang/String;
            putfield com.opencsv.CSVIterator.nextLine:[Ljava/lang/String;
         2: .line 68
            goto 7
      StackMap locals: com.opencsv.CSVIterator java.lang.String[]
      StackMap stack: java.lang.Exception
         3: astore 2 /* e */
        start local 2 // java.lang.Exception e
         4: .line 69
            new java.util.NoSuchElementException
            dup
            aload 2 /* e */
            invokevirtual java.lang.Exception.getLocalizedMessage:()Ljava/lang/String;
            invokespecial java.util.NoSuchElementException.<init>:(Ljava/lang/String;)V
            astore 3 /* nse */
        start local 3 // java.util.NoSuchElementException nse
         5: .line 70
            aload 3 /* nse */
            aload 2 /* e */
            invokevirtual java.util.NoSuchElementException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            pop
         6: .line 71
            aload 3 /* nse */
            athrow
        end local 3 // java.util.NoSuchElementException nse
        end local 2 // java.lang.Exception e
         7: .line 73
      StackMap locals:
      StackMap stack:
            aload 1 /* temp */
            areturn
        end local 1 // java.lang.String[] temp
        end local 0 // com.opencsv.CSVIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/opencsv/CSVIterator;
            1    8     1  temp  [Ljava/lang/String;
            4    7     2     e  Ljava/lang/Exception;
            5    7     3   nse  Ljava/util/NoSuchElementException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.io.IOException
           1     2       3  Class com.opencsv.exceptions.CsvValidationException

  public void remove();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.opencsv.CSVIterator this
         0: .line 82
            new java.lang.UnsupportedOperationException
            dup
            ldc "opencsv"
            aload 0 /* this */
            getfield com.opencsv.CSVIterator.errorLocale:Ljava/util/Locale;
            invokestatic java.util.ResourceBundle.getBundle:(Ljava/lang/String;Ljava/util/Locale;)Ljava/util/ResourceBundle;
            ldc "read.only.iterator"
            invokevirtual java.util.ResourceBundle.getString:(Ljava/lang/String;)Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // com.opencsv.CSVIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/opencsv/CSVIterator;

  public java.lang.Object next();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.opencsv.CSVIterator.next:()[Ljava/lang/String;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Ljava/util/Iterator<[Ljava/lang/String;>;
SourceFile: "CSVIterator.java"