public class org.apache.lucene.store.BufferedChecksumIndexInput extends org.apache.lucene.store.ChecksumIndexInput
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.lucene.store.BufferedChecksumIndexInput
  super_class: org.apache.lucene.store.ChecksumIndexInput
{
  final org.apache.lucene.store.IndexInput main;
    descriptor: Lorg/apache/lucene/store/IndexInput;
    flags: (0x0010) ACC_FINAL

  final java.util.zip.Checksum digest;
    descriptor: Ljava/util/zip/Checksum;
    flags: (0x0010) ACC_FINAL

  public void <init>(org.apache.lucene.store.IndexInput);
    descriptor: (Lorg/apache/lucene/store/IndexInput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.apache.lucene.store.BufferedChecksumIndexInput this
        start local 1 // org.apache.lucene.store.IndexInput main
         0: .line 34
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "BufferedChecksumIndexInput("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* main */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial org.apache.lucene.store.ChecksumIndexInput.<init>:(Ljava/lang/String;)V
         1: .line 35
            aload 0 /* this */
            aload 1 /* main */
            putfield org.apache.lucene.store.BufferedChecksumIndexInput.main:Lorg/apache/lucene/store/IndexInput;
         2: .line 36
            aload 0 /* this */
            new org.apache.lucene.store.BufferedChecksum
            dup
            new java.util.zip.CRC32
            dup
            invokespecial java.util.zip.CRC32.<init>:()V
            invokespecial org.apache.lucene.store.BufferedChecksum.<init>:(Ljava/util/zip/Checksum;)V
            putfield org.apache.lucene.store.BufferedChecksumIndexInput.digest:Ljava/util/zip/Checksum;
         3: .line 37
            return
        end local 1 // org.apache.lucene.store.IndexInput main
        end local 0 // org.apache.lucene.store.BufferedChecksumIndexInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/lucene/store/BufferedChecksumIndexInput;
            0    4     1  main  Lorg/apache/lucene/store/IndexInput;
    MethodParameters:
      Name  Flags
      main  

  public byte readByte();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.lucene.store.BufferedChecksumIndexInput this
         0: .line 41
            aload 0 /* this */
            getfield org.apache.lucene.store.BufferedChecksumIndexInput.main:Lorg/apache/lucene/store/IndexInput;
            invokevirtual org.apache.lucene.store.IndexInput.readByte:()B
            istore 1 /* b */
        start local 1 // byte b
         1: .line 42
            aload 0 /* this */
            getfield org.apache.lucene.store.BufferedChecksumIndexInput.digest:Ljava/util/zip/Checksum;
            iload 1 /* b */
            invokeinterface java.util.zip.Checksum.update:(I)V
         2: .line 43
            iload 1 /* b */
            ireturn
        end local 1 // byte b
        end local 0 // org.apache.lucene.store.BufferedChecksumIndexInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/lucene/store/BufferedChecksumIndexInput;
            1    3     1     b  B
    Exceptions:
      throws java.io.IOException

  public void readBytes(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.apache.lucene.store.BufferedChecksumIndexInput this
        start local 1 // byte[] b
        start local 2 // int offset
        start local 3 // int len
         0: .line 49
            aload 0 /* this */
            getfield org.apache.lucene.store.BufferedChecksumIndexInput.main:Lorg/apache/lucene/store/IndexInput;
            aload 1 /* b */
            iload 2 /* offset */
            iload 3 /* len */
            invokevirtual org.apache.lucene.store.IndexInput.readBytes:([BII)V
         1: .line 50
            aload 0 /* this */
            getfield org.apache.lucene.store.BufferedChecksumIndexInput.digest:Ljava/util/zip/Checksum;
            aload 1 /* b */
            iload 2 /* offset */
            iload 3 /* len */
            invokeinterface java.util.zip.Checksum.update:([BII)V
         2: .line 51
            return
        end local 3 // int len
        end local 2 // int offset
        end local 1 // byte[] b
        end local 0 // org.apache.lucene.store.BufferedChecksumIndexInput this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/apache/lucene/store/BufferedChecksumIndexInput;
            0    3     1       b  [B
            0    3     2  offset  I
            0    3     3     len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      b       
      offset  
      len     

  public long getChecksum();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.store.BufferedChecksumIndexInput this
         0: .line 55
            aload 0 /* this */
            getfield org.apache.lucene.store.BufferedChecksumIndexInput.digest:Ljava/util/zip/Checksum;
            invokeinterface java.util.zip.Checksum.getValue:()J
            lreturn
        end local 0 // org.apache.lucene.store.BufferedChecksumIndexInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/store/BufferedChecksumIndexInput;

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.store.BufferedChecksumIndexInput this
         0: .line 60
            aload 0 /* this */
            getfield org.apache.lucene.store.BufferedChecksumIndexInput.main:Lorg/apache/lucene/store/IndexInput;
            invokevirtual org.apache.lucene.store.IndexInput.close:()V
         1: .line 61
            return
        end local 0 // org.apache.lucene.store.BufferedChecksumIndexInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/lucene/store/BufferedChecksumIndexInput;
    Exceptions:
      throws java.io.IOException

  public long getFilePointer();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.store.BufferedChecksumIndexInput this
         0: .line 65
            aload 0 /* this */
            getfield org.apache.lucene.store.BufferedChecksumIndexInput.main:Lorg/apache/lucene/store/IndexInput;
            invokevirtual org.apache.lucene.store.IndexInput.getFilePointer:()J
            lreturn
        end local 0 // org.apache.lucene.store.BufferedChecksumIndexInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/store/BufferedChecksumIndexInput;

  public long length();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.store.BufferedChecksumIndexInput this
         0: .line 70
            aload 0 /* this */
            getfield org.apache.lucene.store.BufferedChecksumIndexInput.main:Lorg/apache/lucene/store/IndexInput;
            invokevirtual org.apache.lucene.store.IndexInput.length:()J
            lreturn
        end local 0 // org.apache.lucene.store.BufferedChecksumIndexInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/store/BufferedChecksumIndexInput;

  public org.apache.lucene.store.IndexInput clone();
    descriptor: ()Lorg/apache/lucene/store/IndexInput;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.store.BufferedChecksumIndexInput this
         0: .line 75
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // org.apache.lucene.store.BufferedChecksumIndexInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/store/BufferedChecksumIndexInput;

  public org.apache.lucene.store.IndexInput slice(java.lang.String, long, long);
    descriptor: (Ljava/lang/String;JJ)Lorg/apache/lucene/store/IndexInput;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=4
        start local 0 // org.apache.lucene.store.BufferedChecksumIndexInput this
        start local 1 // java.lang.String sliceDescription
        start local 2 // long offset
        start local 4 // long length
         0: .line 80
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 4 // long length
        end local 2 // long offset
        end local 1 // java.lang.String sliceDescription
        end local 0 // org.apache.lucene.store.BufferedChecksumIndexInput this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lorg/apache/lucene/store/BufferedChecksumIndexInput;
            0    1     1  sliceDescription  Ljava/lang/String;
            0    1     2            offset  J
            0    1     4            length  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                  Name  Flags
      sliceDescription  
      offset            
      length            

  public java.lang.Object clone();
    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 org.apache.lucene.store.BufferedChecksumIndexInput.clone:()Lorg/apache/lucene/store/IndexInput;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.CloneNotSupportedException

  public org.apache.lucene.store.DataInput clone();
    descriptor: ()Lorg/apache/lucene/store/DataInput;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.apache.lucene.store.BufferedChecksumIndexInput.clone:()Lorg/apache/lucene/store/IndexInput;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "BufferedChecksumIndexInput.java"