public class javax.sql.rowset.serial.SQLInputImpl implements java.sql.SQLInput
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: javax.sql.rowset.serial.SQLInputImpl
  super_class: java.lang.Object
{
  private boolean lastValueWasNull;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private int idx;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

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

  private java.util.Map<java.lang.String, java.lang.Class<?>> map;
    descriptor: Ljava/util/Map;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;

  public void <init>([], java.util.Map<java.lang.String, java.lang.Class<?>>);
    descriptor: ([Ljava/lang/Object;Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
        start local 1 // java.lang.Object[] attributes
        start local 2 // java.util.Map map
         0: .line 117
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 120
            aload 1 /* attributes */
            ifnull 2
            aload 2 /* map */
            ifnonnull 3
         2: .line 121
      StackMap locals: javax.sql.rowset.serial.SQLInputImpl java.lang.Object[] java.util.Map
      StackMap stack:
            new java.sql.SQLException
            dup
            ldc "Cannot instantiate a SQLInputImpl object with null parameters"
            invokespecial java.sql.SQLException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 125
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* attributes */
            aload 1 /* attributes */
            arraylength
            invokestatic java.util.Arrays.copyOf:([Ljava/lang/Object;I)[Ljava/lang/Object;
            putfield javax.sql.rowset.serial.SQLInputImpl.attrib:[Ljava/lang/Object;
         4: .line 127
            aload 0 /* this */
            iconst_m1
            putfield javax.sql.rowset.serial.SQLInputImpl.idx:I
         5: .line 129
            aload 0 /* this */
            aload 2 /* map */
            putfield javax.sql.rowset.serial.SQLInputImpl.map:Ljava/util/Map;
         6: .line 130
            return
        end local 2 // java.util.Map map
        end local 1 // java.lang.Object[] attributes
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Ljavax/sql/rowset/serial/SQLInputImpl;
            0    7     1  attributes  [Ljava/lang/Object;
            0    7     2         map  Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;
    Exceptions:
      throws java.sql.SQLException
    Signature: ([Ljava/lang/Object;Ljava/util/Map<Ljava/lang/String;Ljava/lang/Class<*>;>;)V
    MethodParameters:
            Name  Flags
      attributes  
      map         

  private java.lang.Object getNextAttribute();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 143
            aload 0 /* this */
            dup
            getfield javax.sql.rowset.serial.SQLInputImpl.idx:I
            iconst_1
            iadd
            dup_x1
            putfield javax.sql.rowset.serial.SQLInputImpl.idx:I
            aload 0 /* this */
            getfield javax.sql.rowset.serial.SQLInputImpl.attrib:[Ljava/lang/Object;
            arraylength
            if_icmplt 2
         1: .line 144
            new java.sql.SQLException
            dup
            ldc "SQLInputImpl exception: Invalid read position"
            invokespecial java.sql.SQLException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 147
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.sql.rowset.serial.SQLInputImpl.attrib:[Ljava/lang/Object;
            aload 0 /* this */
            getfield javax.sql.rowset.serial.SQLInputImpl.idx:I
            aaload
            ifnonnull 3
            iconst_1
            goto 4
      StackMap locals:
      StackMap stack: javax.sql.rowset.serial.SQLInputImpl
         3: iconst_0
      StackMap locals: javax.sql.rowset.serial.SQLInputImpl
      StackMap stack: javax.sql.rowset.serial.SQLInputImpl int
         4: putfield javax.sql.rowset.serial.SQLInputImpl.lastValueWasNull:Z
         5: .line 148
            aload 0 /* this */
            getfield javax.sql.rowset.serial.SQLInputImpl.attrib:[Ljava/lang/Object;
            aload 0 /* this */
            getfield javax.sql.rowset.serial.SQLInputImpl.idx:I
            aaload
            areturn
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljavax/sql/rowset/serial/SQLInputImpl;
    Exceptions:
      throws java.sql.SQLException

  public java.lang.String readString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 174
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.lang.String
            areturn
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/sql/rowset/serial/SQLInputImpl;
    Exceptions:
      throws java.sql.SQLException

  public boolean readBoolean();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 192
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.lang.Boolean
            astore 1 /* attrib */
        start local 1 // java.lang.Boolean attrib
         1: .line 193
            aload 1 /* attrib */
            ifnonnull 2
            iconst_0
            goto 3
      StackMap locals: java.lang.Boolean
      StackMap stack:
         2: aload 1 /* attrib */
            invokevirtual java.lang.Boolean.booleanValue:()Z
      StackMap locals:
      StackMap stack: int
         3: ireturn
        end local 1 // java.lang.Boolean attrib
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Ljavax/sql/rowset/serial/SQLInputImpl;
            1    4     1  attrib  Ljava/lang/Boolean;
    Exceptions:
      throws java.sql.SQLException

  public byte readByte();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 211
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.lang.Byte
            astore 1 /* attrib */
        start local 1 // java.lang.Byte attrib
         1: .line 212
            aload 1 /* attrib */
            ifnonnull 2
            iconst_0
            goto 3
      StackMap locals: java.lang.Byte
      StackMap stack:
         2: aload 1 /* attrib */
            invokevirtual java.lang.Byte.byteValue:()B
      StackMap locals:
      StackMap stack: int
         3: ireturn
        end local 1 // java.lang.Byte attrib
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Ljavax/sql/rowset/serial/SQLInputImpl;
            1    4     1  attrib  Ljava/lang/Byte;
    Exceptions:
      throws java.sql.SQLException

  public short readShort();
    descriptor: ()S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 229
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.lang.Short
            astore 1 /* attrib */
        start local 1 // java.lang.Short attrib
         1: .line 230
            aload 1 /* attrib */
            ifnonnull 2
            iconst_0
            goto 3
      StackMap locals: java.lang.Short
      StackMap stack:
         2: aload 1 /* attrib */
            invokevirtual java.lang.Short.shortValue:()S
      StackMap locals:
      StackMap stack: int
         3: ireturn
        end local 1 // java.lang.Short attrib
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Ljavax/sql/rowset/serial/SQLInputImpl;
            1    4     1  attrib  Ljava/lang/Short;
    Exceptions:
      throws java.sql.SQLException

  public int readInt();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 247
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.lang.Integer
            astore 1 /* attrib */
        start local 1 // java.lang.Integer attrib
         1: .line 248
            aload 1 /* attrib */
            ifnonnull 2
            iconst_0
            goto 3
      StackMap locals: java.lang.Integer
      StackMap stack:
         2: aload 1 /* attrib */
            invokevirtual java.lang.Integer.intValue:()I
      StackMap locals:
      StackMap stack: int
         3: ireturn
        end local 1 // java.lang.Integer attrib
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Ljavax/sql/rowset/serial/SQLInputImpl;
            1    4     1  attrib  Ljava/lang/Integer;
    Exceptions:
      throws java.sql.SQLException

  public long readLong();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 265
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.lang.Long
            astore 1 /* attrib */
        start local 1 // java.lang.Long attrib
         1: .line 266
            aload 1 /* attrib */
            ifnonnull 2
            lconst_0
            goto 3
      StackMap locals: java.lang.Long
      StackMap stack:
         2: aload 1 /* attrib */
            invokevirtual java.lang.Long.longValue:()J
      StackMap locals:
      StackMap stack: long
         3: lreturn
        end local 1 // java.lang.Long attrib
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Ljavax/sql/rowset/serial/SQLInputImpl;
            1    4     1  attrib  Ljava/lang/Long;
    Exceptions:
      throws java.sql.SQLException

  public float readFloat();
    descriptor: ()F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 283
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.lang.Float
            astore 1 /* attrib */
        start local 1 // java.lang.Float attrib
         1: .line 284
            aload 1 /* attrib */
            ifnonnull 2
            fconst_0
            goto 3
      StackMap locals: java.lang.Float
      StackMap stack:
         2: aload 1 /* attrib */
            invokevirtual java.lang.Float.floatValue:()F
      StackMap locals:
      StackMap stack: float
         3: freturn
        end local 1 // java.lang.Float attrib
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Ljavax/sql/rowset/serial/SQLInputImpl;
            1    4     1  attrib  Ljava/lang/Float;
    Exceptions:
      throws java.sql.SQLException

  public double readDouble();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 301
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.lang.Double
            astore 1 /* attrib */
        start local 1 // java.lang.Double attrib
         1: .line 302
            aload 1 /* attrib */
            ifnonnull 2
            dconst_0
            goto 3
      StackMap locals: java.lang.Double
      StackMap stack:
         2: aload 1 /* attrib */
            invokevirtual java.lang.Double.doubleValue:()D
      StackMap locals:
      StackMap stack: double
         3: dreturn
        end local 1 // java.lang.Double attrib
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Ljavax/sql/rowset/serial/SQLInputImpl;
            1    4     1  attrib  Ljava/lang/Double;
    Exceptions:
      throws java.sql.SQLException

  public java.math.BigDecimal readBigDecimal();
    descriptor: ()Ljava/math/BigDecimal;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 319
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.math.BigDecimal
            areturn
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/sql/rowset/serial/SQLInputImpl;
    Exceptions:
      throws java.sql.SQLException

  public byte[] readBytes();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 336
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast byte[]
            areturn
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/sql/rowset/serial/SQLInputImpl;
    Exceptions:
      throws java.sql.SQLException

  public java.sql.Date readDate();
    descriptor: ()Ljava/sql/Date;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 353
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.sql.Date
            areturn
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/sql/rowset/serial/SQLInputImpl;
    Exceptions:
      throws java.sql.SQLException

  public java.sql.Time readTime();
    descriptor: ()Ljava/sql/Time;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 371
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.sql.Time
            areturn
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/sql/rowset/serial/SQLInputImpl;
    Exceptions:
      throws java.sql.SQLException

  public java.sql.Timestamp readTimestamp();
    descriptor: ()Ljava/sql/Timestamp;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 384
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.sql.Timestamp
            areturn
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/sql/rowset/serial/SQLInputImpl;
    Exceptions:
      throws java.sql.SQLException

  public java.io.Reader readCharacterStream();
    descriptor: ()Ljava/io/Reader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 401
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.io.Reader
            areturn
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/sql/rowset/serial/SQLInputImpl;
    Exceptions:
      throws java.sql.SQLException

  public java.io.InputStream readAsciiStream();
    descriptor: ()Ljava/io/InputStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 419
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.io.InputStream
            areturn
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/sql/rowset/serial/SQLInputImpl;
    Exceptions:
      throws java.sql.SQLException

  public java.io.InputStream readBinaryStream();
    descriptor: ()Ljava/io/InputStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 437
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.io.InputStream
            areturn
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/sql/rowset/serial/SQLInputImpl;
    Exceptions:
      throws java.sql.SQLException

  public java.lang.Object readObject();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 471
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            astore 1 /* attrib */
        start local 1 // java.lang.Object attrib
         1: .line 472
            aload 1 /* attrib */
            instanceof java.sql.Struct
            ifeq 16
         2: .line 473
            aload 1 /* attrib */
            checkcast java.sql.Struct
            astore 2 /* s */
        start local 2 // java.sql.Struct s
         3: .line 475
            aload 0 /* this */
            getfield javax.sql.rowset.serial.SQLInputImpl.map:Ljava/util/Map;
            aload 2 /* s */
            invokeinterface java.sql.Struct.getSQLTypeName:()Ljava/lang/String;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Class
            astore 3 /* c */
        start local 3 // java.lang.Class c
         4: .line 476
            aload 3 /* c */
            ifnull 16
         5: .line 478
            aconst_null
            astore 4 /* obj */
        start local 4 // java.sql.SQLData obj
         6: .line 480
            aload 3 /* c */
            invokestatic sun.reflect.misc.ReflectUtil.checkPackageAccess:(Ljava/lang/Class;)V
         7: .line 482
            aload 3 /* c */
            invokevirtual java.lang.Class.newInstance:()Ljava/lang/Object;
            astore 5 /* tmp */
        start local 5 // java.lang.Object tmp
         8: .line 483
            aload 5 /* tmp */
            checkcast java.sql.SQLData
            astore 4 /* obj */
        end local 5 // java.lang.Object tmp
         9: .line 484
            goto 12
      StackMap locals: javax.sql.rowset.serial.SQLInputImpl java.lang.Object java.sql.Struct java.lang.Class java.sql.SQLData
      StackMap stack: java.lang.Exception
        10: astore 5 /* ex */
        start local 5 // java.lang.Exception ex
        11: .line 485
            new java.sql.SQLException
            dup
            ldc "Unable to Instantiate: "
            aload 5 /* ex */
            invokespecial java.sql.SQLException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.lang.Exception ex
        12: .line 488
      StackMap locals:
      StackMap stack:
            aload 2 /* s */
            aload 0 /* this */
            getfield javax.sql.rowset.serial.SQLInputImpl.map:Ljava/util/Map;
            invokeinterface java.sql.Struct.getAttributes:(Ljava/util/Map;)[Ljava/lang/Object;
            astore 5 /* attribs */
        start local 5 // java.lang.Object[] attribs
        13: .line 490
            new javax.sql.rowset.serial.SQLInputImpl
            dup
            aload 5 /* attribs */
            aload 0 /* this */
            getfield javax.sql.rowset.serial.SQLInputImpl.map:Ljava/util/Map;
            invokespecial javax.sql.rowset.serial.SQLInputImpl.<init>:([Ljava/lang/Object;Ljava/util/Map;)V
            astore 6 /* sqlInput */
        start local 6 // javax.sql.rowset.serial.SQLInputImpl sqlInput
        14: .line 492
            aload 4 /* obj */
            aload 6 /* sqlInput */
            aload 2 /* s */
            invokeinterface java.sql.Struct.getSQLTypeName:()Ljava/lang/String;
            invokeinterface java.sql.SQLData.readSQL:(Ljava/sql/SQLInput;Ljava/lang/String;)V
        15: .line 493
            aload 4 /* obj */
            areturn
        end local 6 // javax.sql.rowset.serial.SQLInputImpl sqlInput
        end local 5 // java.lang.Object[] attribs
        end local 4 // java.sql.SQLData obj
        end local 3 // java.lang.Class c
        end local 2 // java.sql.Struct s
        16: .line 496
      StackMap locals:
      StackMap stack:
            aload 1 /* attrib */
            areturn
        end local 1 // java.lang.Object attrib
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   17     0      this  Ljavax/sql/rowset/serial/SQLInputImpl;
            1   17     1    attrib  Ljava/lang/Object;
            3   16     2         s  Ljava/sql/Struct;
            4   16     3         c  Ljava/lang/Class<*>;
            6   16     4       obj  Ljava/sql/SQLData;
            8    9     5       tmp  Ljava/lang/Object;
           11   12     5        ex  Ljava/lang/Exception;
           13   16     5   attribs  [Ljava/lang/Object;
           14   16     6  sqlInput  Ljavax/sql/rowset/serial/SQLInputImpl;
      Exception table:
        from    to  target  type
           6     9      10  Class java.lang.Exception
    Exceptions:
      throws java.sql.SQLException

  public java.sql.Ref readRef();
    descriptor: ()Ljava/sql/Ref;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 510
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.sql.Ref
            areturn
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/sql/rowset/serial/SQLInputImpl;
    Exceptions:
      throws java.sql.SQLException

  public java.sql.Blob readBlob();
    descriptor: ()Ljava/sql/Blob;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 531
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.sql.Blob
            areturn
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/sql/rowset/serial/SQLInputImpl;
    Exceptions:
      throws java.sql.SQLException

  public java.sql.Clob readClob();
    descriptor: ()Ljava/sql/Clob;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 552
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.sql.Clob
            areturn
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/sql/rowset/serial/SQLInputImpl;
    Exceptions:
      throws java.sql.SQLException

  public java.sql.Array readArray();
    descriptor: ()Ljava/sql/Array;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 574
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.sql.Array
            areturn
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/sql/rowset/serial/SQLInputImpl;
    Exceptions:
      throws java.sql.SQLException

  public boolean wasNull();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 588
            aload 0 /* this */
            getfield javax.sql.rowset.serial.SQLInputImpl.lastValueWasNull:Z
            ireturn
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/sql/rowset/serial/SQLInputImpl;
    Exceptions:
      throws java.sql.SQLException

  public java.net.URL readURL();
    descriptor: ()Ljava/net/URL;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 609
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.net.URL
            areturn
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/sql/rowset/serial/SQLInputImpl;
    Exceptions:
      throws java.sql.SQLException

  public java.sql.NClob readNClob();
    descriptor: ()Ljava/sql/NClob;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 625
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.sql.NClob
            areturn
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/sql/rowset/serial/SQLInputImpl;
    Exceptions:
      throws java.sql.SQLException

  public java.lang.String readNString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 639
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.lang.String
            areturn
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/sql/rowset/serial/SQLInputImpl;
    Exceptions:
      throws java.sql.SQLException

  public java.sql.SQLXML readSQLXML();
    descriptor: ()Ljava/sql/SQLXML;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 653
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.sql.SQLXML
            areturn
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/sql/rowset/serial/SQLInputImpl;
    Exceptions:
      throws java.sql.SQLException

  public java.sql.RowId readRowId();
    descriptor: ()Ljava/sql/RowId;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.sql.rowset.serial.SQLInputImpl this
         0: .line 667
            aload 0 /* this */
            invokevirtual javax.sql.rowset.serial.SQLInputImpl.getNextAttribute:()Ljava/lang/Object;
            checkcast java.sql.RowId
            areturn
        end local 0 // javax.sql.rowset.serial.SQLInputImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/sql/rowset/serial/SQLInputImpl;
    Exceptions:
      throws java.sql.SQLException
}
SourceFile: "SQLInputImpl.java"