public class org.apache.lucene.store.InputStreamDataInput extends org.apache.lucene.store.DataInput implements java.io.Closeable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.lucene.store.InputStreamDataInput
  super_class: org.apache.lucene.store.DataInput
{
  private final java.io.InputStream is;
    descriptor: Ljava/io/InputStream;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(java.io.InputStream);
    descriptor: (Ljava/io/InputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.store.InputStreamDataInput this
        start local 1 // java.io.InputStream is
         0: .line 28
            aload 0 /* this */
            invokespecial org.apache.lucene.store.DataInput.<init>:()V
         1: .line 29
            aload 0 /* this */
            aload 1 /* is */
            putfield org.apache.lucene.store.InputStreamDataInput.is:Ljava/io/InputStream;
         2: .line 30
            return
        end local 1 // java.io.InputStream is
        end local 0 // org.apache.lucene.store.InputStreamDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/lucene/store/InputStreamDataInput;
            0    3     1    is  Ljava/io/InputStream;
    MethodParameters:
      Name  Flags
      is    

  public byte readByte();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.lucene.store.InputStreamDataInput this
         0: .line 34
            aload 0 /* this */
            getfield org.apache.lucene.store.InputStreamDataInput.is:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.read:()I
            istore 1 /* v */
        start local 1 // int v
         1: .line 35
            iload 1 /* v */
            iconst_m1
            if_icmpne 2
            new java.io.EOFException
            dup
            invokespecial java.io.EOFException.<init>:()V
            athrow
         2: .line 36
      StackMap locals: int
      StackMap stack:
            iload 1 /* v */
            i2b
            ireturn
        end local 1 // int v
        end local 0 // org.apache.lucene.store.InputStreamDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/lucene/store/InputStreamDataInput;
            1    3     1     v  I
    Exceptions:
      throws java.io.IOException

  public void readBytes(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.apache.lucene.store.InputStreamDataInput this
        start local 1 // byte[] b
        start local 2 // int offset
        start local 3 // int len
         0: .line 41
            goto 6
         1: .line 42
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.store.InputStreamDataInput.is:Ljava/io/InputStream;
            aload 1 /* b */
            iload 2 /* offset */
            iload 3 /* len */
            invokevirtual java.io.InputStream.read:([BII)I
            istore 4 /* cnt */
        start local 4 // int cnt
         2: .line 43
            iload 4 /* cnt */
            ifge 4
         3: .line 45
            new java.io.EOFException
            dup
            invokespecial java.io.EOFException.<init>:()V
            athrow
         4: .line 47
      StackMap locals: int
      StackMap stack:
            iload 3 /* len */
            iload 4 /* cnt */
            isub
            istore 3 /* len */
         5: .line 48
            iload 2 /* offset */
            iload 4 /* cnt */
            iadd
            istore 2 /* offset */
        end local 4 // int cnt
         6: .line 41
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifgt 1
         7: .line 50
            return
        end local 3 // int len
        end local 2 // int offset
        end local 1 // byte[] b
        end local 0 // org.apache.lucene.store.InputStreamDataInput this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/apache/lucene/store/InputStreamDataInput;
            0    8     1       b  [B
            0    8     2  offset  I
            0    8     3     len  I
            2    6     4     cnt  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      b       
      offset  
      len     

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.store.InputStreamDataInput this
         0: .line 54
            aload 0 /* this */
            getfield org.apache.lucene.store.InputStreamDataInput.is:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.close:()V
         1: .line 55
            return
        end local 0 // org.apache.lucene.store.InputStreamDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/lucene/store/InputStreamDataInput;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "InputStreamDataInput.java"