public abstract class com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl extends com.fasterxml.jackson.dataformat.avro.AvroParser
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl
  super_class: com.fasterxml.jackson.dataformat.avro.AvroParser
{
  protected static final byte[] NO_BYTES;
    descriptor: [B
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL

  protected int _branchIndex;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int _enumIndex;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected float _numberFloat;
    descriptor: F
    flags: (0x0004) ACC_PROTECTED

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 19
            iconst_0
            newarray 8
            putstatic com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.NO_BYTES:[B
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void <init>(com.fasterxml.jackson.core.io.IOContext, int, int, com.fasterxml.jackson.core.ObjectCodec);
    descriptor: (Lcom/fasterxml/jackson/core/io/IOContext;IILcom/fasterxml/jackson/core/ObjectCodec;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
        start local 1 // com.fasterxml.jackson.core.io.IOContext ctxt
        start local 2 // int parserFeatures
        start local 3 // int avroFeatures
        start local 4 // com.fasterxml.jackson.core.ObjectCodec codec
         0: .line 60
            aload 0 /* this */
            aload 1 /* ctxt */
            iload 2 /* parserFeatures */
            iload 3 /* avroFeatures */
            aload 4 /* codec */
            invokespecial com.fasterxml.jackson.dataformat.avro.AvroParser.<init>:(Lcom/fasterxml/jackson/core/io/IOContext;IILcom/fasterxml/jackson/core/ObjectCodec;)V
         1: .line 61
            return
        end local 4 // com.fasterxml.jackson.core.ObjectCodec codec
        end local 3 // int avroFeatures
        end local 2 // int parserFeatures
        end local 1 // com.fasterxml.jackson.core.io.IOContext ctxt
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            0    2     1            ctxt  Lcom/fasterxml/jackson/core/io/IOContext;
            0    2     2  parserFeatures  I
            0    2     3    avroFeatures  I
            0    2     4           codec  Lcom/fasterxml/jackson/core/ObjectCodec;
    MethodParameters:
                Name  Flags
      ctxt            
      parserFeatures  
      avroFeatures    
      codec           

  public final com.fasterxml.jackson.core.JsonParser overrideFormatFeatures(int, int);
    descriptor: (II)Lcom/fasterxml/jackson/core/JsonParser;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
        start local 1 // int values
        start local 2 // int mask
         0: .line 65
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._formatFeatures:I
            istore 3 /* oldF */
        start local 3 // int oldF
         1: .line 66
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._formatFeatures:I
            iload 2 /* mask */
            iconst_m1
            ixor
            iand
            iload 1 /* values */
            iload 2 /* mask */
            iand
            ior
            istore 4 /* newF */
        start local 4 // int newF
         2: .line 68
            iload 3 /* oldF */
            iload 4 /* newF */
            if_icmpeq 4
         3: .line 69
            aload 0 /* this */
            iload 4 /* newF */
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._formatFeatures:I
         4: .line 73
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 4 // int newF
        end local 3 // int oldF
        end local 2 // int mask
        end local 1 // int values
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            0    5     1  values  I
            0    5     2    mask  I
            1    5     3    oldF  I
            2    5     4    newF  I
    MethodParameters:
        Name  Flags
      values  
      mask    

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 79
            aload 0 /* this */
            getstatic com.fasterxml.jackson.dataformat.avro.deser.MissingReader.closedInstance:Lcom/fasterxml/jackson/dataformat/avro/deser/MissingReader;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._avroContext:Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
         1: .line 80
            aload 0 /* this */
            invokespecial com.fasterxml.jackson.dataformat.avro.AvroParser.close:()V
         2: .line 81
            return
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
    Exceptions:
      throws java.io.IOException

  public com.fasterxml.jackson.core.JsonToken nextToken();
    descriptor: ()Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 93
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
         1: .line 94
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currInputProcessed:J
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._inputPtr:I
            i2l
            ladd
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._tokenInputTotal:J
         2: .line 95
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._branchIndex:I
         3: .line 96
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._enumIndex:I
         4: .line 97
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._binaryValue:[B
         5: .line 98
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._avroContext:Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroReadContext.nextToken:()Lcom/fasterxml/jackson/core/JsonToken;
            astore 1 /* t */
        start local 1 // com.fasterxml.jackson.core.JsonToken t
         6: .line 99
            aload 0 /* this */
            aload 1 /* t */
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currToken:Lcom/fasterxml/jackson/core/JsonToken;
         7: .line 100
            aload 1 /* t */
            areturn
        end local 1 // com.fasterxml.jackson.core.JsonToken t
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            6    8     1     t  Lcom/fasterxml/jackson/core/JsonToken;
    Exceptions:
      throws java.io.IOException

  public java.lang.String nextFieldName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 107
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
         1: .line 108
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currInputProcessed:J
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._inputPtr:I
            i2l
            ladd
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._tokenInputTotal:J
         2: .line 109
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._binaryValue:[B
         3: .line 110
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._avroContext:Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroReadContext.nextFieldName:()Ljava/lang/String;
            astore 1 /* name */
        start local 1 // java.lang.String name
         4: .line 111
            aload 1 /* name */
            ifnonnull 7
         5: .line 112
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._avroContext:Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroReadContext.getCurrentToken:()Lcom/fasterxml/jackson/core/JsonToken;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currToken:Lcom/fasterxml/jackson/core/JsonToken;
         6: .line 113
            aconst_null
            areturn
         7: .line 115
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            getstatic com.fasterxml.jackson.core.JsonToken.FIELD_NAME:Lcom/fasterxml/jackson/core/JsonToken;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currToken:Lcom/fasterxml/jackson/core/JsonToken;
         8: .line 116
            aload 1 /* name */
            areturn
        end local 1 // java.lang.String name
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            4    9     1  name  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException

  public boolean nextFieldName(com.fasterxml.jackson.core.SerializableString);
    descriptor: (Lcom/fasterxml/jackson/core/SerializableString;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
        start local 1 // com.fasterxml.jackson.core.SerializableString sstr
         0: .line 123
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
         1: .line 124
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currInputProcessed:J
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._inputPtr:I
            i2l
            ladd
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._tokenInputTotal:J
         2: .line 125
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._binaryValue:[B
         3: .line 126
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._avroContext:Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroReadContext.nextFieldName:()Ljava/lang/String;
            astore 2 /* name */
        start local 2 // java.lang.String name
         4: .line 127
            aload 2 /* name */
            ifnonnull 7
         5: .line 128
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._avroContext:Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroReadContext.getCurrentToken:()Lcom/fasterxml/jackson/core/JsonToken;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currToken:Lcom/fasterxml/jackson/core/JsonToken;
         6: .line 129
            iconst_0
            ireturn
         7: .line 131
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            getstatic com.fasterxml.jackson.core.JsonToken.FIELD_NAME:Lcom/fasterxml/jackson/core/JsonToken;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currToken:Lcom/fasterxml/jackson/core/JsonToken;
         8: .line 132
            aload 2 /* name */
            aload 1 /* sstr */
            invokeinterface com.fasterxml.jackson.core.SerializableString.getValue:()Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 2 // java.lang.String name
        end local 1 // com.fasterxml.jackson.core.SerializableString sstr
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            0    9     1  sstr  Lcom/fasterxml/jackson/core/SerializableString;
            4    9     2  name  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      sstr  

  public abstract java.lang.String nextTextValue();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public final void _initSchema(com.fasterxml.jackson.dataformat.avro.AvroSchema);
    descriptor: (Lcom/fasterxml/jackson/dataformat/avro/AvroSchema;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
        start local 1 // com.fasterxml.jackson.dataformat.avro.AvroSchema schema
         0: .line 140
            aload 0 /* this */
            new com.fasterxml.jackson.dataformat.avro.deser.RootReader
            dup
            aload 0 /* this */
            aload 1 /* schema */
            invokevirtual com.fasterxml.jackson.dataformat.avro.AvroSchema.getReader:()Lcom/fasterxml/jackson/dataformat/avro/deser/AvroStructureReader;
            invokespecial com.fasterxml.jackson.dataformat.avro.deser.RootReader.<init>:(Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;Lcom/fasterxml/jackson/dataformat/avro/deser/AvroStructureReader;)V
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._avroContext:Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
         1: .line 141
            return
        end local 1 // com.fasterxml.jackson.dataformat.avro.AvroSchema schema
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            0    2     1  schema  Lcom/fasterxml/jackson/dataformat/avro/AvroSchema;
    Exceptions:
      throws com.fasterxml.jackson.core.JsonProcessingException
    MethodParameters:
        Name  Flags
      schema  

  public final void skipValue();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 152
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._avroContext:Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroReadContext.skipValue:(Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;)V
         1: .line 153
            return
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
    Exceptions:
      throws java.io.IOException

  public final boolean isNaN();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 163
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currToken:Lcom/fasterxml/jackson/core/JsonToken;
            getstatic com.fasterxml.jackson.core.JsonToken.VALUE_NUMBER_FLOAT:Lcom/fasterxml/jackson/core/JsonToken;
            if_acmpne 9
         1: .line 164
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 8
            iand
            ifeq 5
         2: .line 166
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
            dstore 1 /* d */
        start local 1 // double d
         3: .line 167
            dload 1 /* d */
            invokestatic java.lang.Double.isNaN:(D)Z
            ifne 4
            dload 1 /* d */
            invokestatic java.lang.Double.isInfinite:(D)Z
            ifne 4
            iconst_0
            ireturn
      StackMap locals: double
      StackMap stack:
         4: iconst_1
            ireturn
        end local 1 // double d
         5: .line 169
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 32
            iand
            ifeq 9
         6: .line 170
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            fstore 1 /* f */
        start local 1 // float f
         7: .line 171
            fload 1 /* f */
            invokestatic java.lang.Float.isNaN:(F)Z
            ifne 8
            fload 1 /* f */
            invokestatic java.lang.Float.isInfinite:(F)Z
            ifne 8
            iconst_0
            ireturn
      StackMap locals: float
      StackMap stack:
         8: iconst_1
            ireturn
        end local 1 // float f
         9: .line 174
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            3    5     1     d  D
            7    9     1     f  F

  public final java.lang.Number getNumberValue();
    descriptor: ()Ljava/lang/Number;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 180
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            ifne 2
         1: .line 181
            aload 0 /* this */
            iconst_0
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._checkNumericValue:(I)V
         2: .line 184
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currToken:Lcom/fasterxml/jackson/core/JsonToken;
            getstatic com.fasterxml.jackson.core.JsonToken.VALUE_NUMBER_INT:Lcom/fasterxml/jackson/core/JsonToken;
            if_acmpne 10
         3: .line 185
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_1
            iand
            ifeq 5
         4: .line 186
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            areturn
         5: .line 188
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_2
            iand
            ifeq 7
         6: .line 189
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            areturn
         7: .line 191
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_4
            iand
            ifeq 9
         8: .line 192
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
            areturn
         9: .line 195
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
            areturn
        10: .line 200
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 16
            iand
            ifeq 12
        11: .line 201
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
            areturn
        12: .line 203
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 8
            iand
            ifeq 14
        13: .line 204
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            areturn
        14: .line 206
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 32
            iand
            ifne 16
        15: .line 207
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._throwInternal:()V
        16: .line 209
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            invokestatic java.lang.Float.valueOf:(F)Ljava/lang/Float;
            areturn
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
    Exceptions:
      throws java.io.IOException

  public final com.fasterxml.jackson.core.JsonParser$NumberType getNumberType();
    descriptor: ()Lcom/fasterxml/jackson/core/JsonParser$NumberType;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 215
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            ifne 2
         1: .line 216
            aload 0 /* this */
            iconst_0
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._checkNumericValue:(I)V
         2: .line 218
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currToken:Lcom/fasterxml/jackson/core/JsonToken;
            getstatic com.fasterxml.jackson.core.JsonToken.VALUE_NUMBER_INT:Lcom/fasterxml/jackson/core/JsonToken;
            if_acmpne 8
         3: .line 219
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_1
            iand
            ifeq 5
         4: .line 220
            getstatic com.fasterxml.jackson.core.JsonParser$NumberType.INT:Lcom/fasterxml/jackson/core/JsonParser$NumberType;
            areturn
         5: .line 222
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_2
            iand
            ifeq 7
         6: .line 223
            getstatic com.fasterxml.jackson.core.JsonParser$NumberType.LONG:Lcom/fasterxml/jackson/core/JsonParser$NumberType;
            areturn
         7: .line 225
      StackMap locals:
      StackMap stack:
            getstatic com.fasterxml.jackson.core.JsonParser$NumberType.BIG_INTEGER:Lcom/fasterxml/jackson/core/JsonParser$NumberType;
            areturn
         8: .line 231
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 16
            iand
            ifeq 10
         9: .line 232
            getstatic com.fasterxml.jackson.core.JsonParser$NumberType.BIG_DECIMAL:Lcom/fasterxml/jackson/core/JsonParser$NumberType;
            areturn
        10: .line 234
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 8
            iand
            ifeq 12
        11: .line 235
            getstatic com.fasterxml.jackson.core.JsonParser$NumberType.DOUBLE:Lcom/fasterxml/jackson/core/JsonParser$NumberType;
            areturn
        12: .line 237
      StackMap locals:
      StackMap stack:
            getstatic com.fasterxml.jackson.core.JsonParser$NumberType.FLOAT:Lcom/fasterxml/jackson/core/JsonParser$NumberType;
            areturn
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
    Exceptions:
      throws java.io.IOException

  public final float getFloatValue();
    descriptor: ()F
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 243
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 32
            iand
            ifne 5
         1: .line 244
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            ifne 3
         2: .line 245
            aload 0 /* this */
            bipush 32
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._checkNumericValue:(I)V
         3: .line 247
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 32
            iand
            ifne 5
         4: .line 248
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.convertNumberToFloat:()V
         5: .line 257
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            freturn
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
    Exceptions:
      throws java.io.IOException

  protected final void _checkNumericValue(int);
    descriptor: (I)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
        start local 1 // int expType
         0: .line 269
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currToken:Lcom/fasterxml/jackson/core/JsonToken;
            getstatic com.fasterxml.jackson.core.JsonToken.VALUE_NUMBER_INT:Lcom/fasterxml/jackson/core/JsonToken;
            if_acmpeq 1
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currToken:Lcom/fasterxml/jackson/core/JsonToken;
            getstatic com.fasterxml.jackson.core.JsonToken.VALUE_NUMBER_FLOAT:Lcom/fasterxml/jackson/core/JsonToken;
            if_acmpne 2
         1: .line 270
      StackMap locals:
      StackMap stack:
            return
         2: .line 272
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "Current token ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.getCurrentToken:()Lcom/fasterxml/jackson/core/JsonToken;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ") not numeric, can not use numeric value accessors"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._reportError:(Ljava/lang/String;)V
         3: .line 273
            return
        end local 1 // int expType
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            0    4     1  expType  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      expType  

  protected final void convertNumberToInt();
    descriptor: ()V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 279
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_2
            iand
            ifeq 6
         1: .line 281
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
            l2i
            istore 1 /* result */
        start local 1 // int result
         2: .line 282
            iload 1 /* result */
            i2l
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
            lcmp
            ifeq 4
         3: .line 283
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "Numeric value ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.getText:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ") out of range of int"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._reportError:(Ljava/lang/String;)V
         4: .line 285
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* result */
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
        end local 1 // int result
         5: .line 286
            goto 29
      StackMap locals:
      StackMap stack:
         6: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_4
            iand
            ifeq 12
         7: .line 287
            getstatic com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.BI_MIN_INT:Ljava/math/BigInteger;
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.compareTo:(Ljava/math/BigInteger;)I
            ifgt 9
         8: .line 288
            getstatic com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.BI_MAX_INT:Ljava/math/BigInteger;
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.compareTo:(Ljava/math/BigInteger;)I
            ifge 10
         9: .line 289
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.reportOverflowInt:()V
        10: .line 291
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.intValue:()I
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
        11: .line 292
            goto 29
      StackMap locals:
      StackMap stack:
        12: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 8
            iand
            ifeq 17
        13: .line 294
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
            ldc -2.147483648E9
            dcmpg
            iflt 14
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
            ldc 2.147483647E9
            dcmpl
            ifle 15
        14: .line 295
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.reportOverflowInt:()V
        15: .line 297
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
            d2i
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
        16: .line 298
            goto 29
      StackMap locals:
      StackMap stack:
        17: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 32
            iand
            ifeq 22
        18: .line 299
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            f2d
            ldc -2.147483648E9
            dcmpg
            iflt 19
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            f2d
            ldc 2.147483647E9
            dcmpl
            ifle 20
        19: .line 300
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.reportOverflowInt:()V
        20: .line 302
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            f2i
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
        21: .line 303
            goto 29
      StackMap locals:
      StackMap stack:
        22: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 16
            iand
            ifeq 28
        23: .line 304
            getstatic com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.BD_MIN_INT:Ljava/math/BigDecimal;
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
            invokevirtual java.math.BigDecimal.compareTo:(Ljava/math/BigDecimal;)I
            ifgt 25
        24: .line 305
            getstatic com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.BD_MAX_INT:Ljava/math/BigDecimal;
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
            invokevirtual java.math.BigDecimal.compareTo:(Ljava/math/BigDecimal;)I
            ifge 26
        25: .line 306
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.reportOverflowInt:()V
        26: .line 308
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
            invokevirtual java.math.BigDecimal.intValue:()I
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
        27: .line 309
            goto 29
        28: .line 310
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._throwInternal:()V
        29: .line 312
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_1
            ior
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
        30: .line 313
            return
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   31     0    this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            2    5     1  result  I
    Exceptions:
      throws java.io.IOException

  protected final void convertNumberToLong();
    descriptor: ()V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 318
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_1
            iand
            ifeq 3
         1: .line 319
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
            i2l
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
         2: .line 320
            goto 26
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_4
            iand
            ifeq 9
         4: .line 321
            getstatic com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.BI_MIN_LONG:Ljava/math/BigInteger;
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.compareTo:(Ljava/math/BigInteger;)I
            ifgt 6
         5: .line 322
            getstatic com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.BI_MAX_LONG:Ljava/math/BigInteger;
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.compareTo:(Ljava/math/BigInteger;)I
            ifge 7
         6: .line 323
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.reportOverflowLong:()V
         7: .line 325
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.longValue:()J
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
         8: .line 326
            goto 26
      StackMap locals:
      StackMap stack:
         9: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 8
            iand
            ifeq 14
        10: .line 327
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
            ldc -9.223372036854776E18
            dcmpg
            iflt 11
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
            ldc 9.223372036854776E18
            dcmpl
            ifle 12
        11: .line 328
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.reportOverflowLong:()V
        12: .line 330
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
            d2l
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
        13: .line 331
            goto 26
      StackMap locals:
      StackMap stack:
        14: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 32
            iand
            ifeq 19
        15: .line 332
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            f2d
            ldc -9.223372036854776E18
            dcmpg
            iflt 16
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            f2d
            ldc 9.223372036854776E18
            dcmpl
            ifle 17
        16: .line 333
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.reportOverflowInt:()V
        17: .line 335
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            f2l
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
        18: .line 336
            goto 26
      StackMap locals:
      StackMap stack:
        19: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 16
            iand
            ifeq 25
        20: .line 337
            getstatic com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.BD_MIN_LONG:Ljava/math/BigDecimal;
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
            invokevirtual java.math.BigDecimal.compareTo:(Ljava/math/BigDecimal;)I
            ifgt 22
        21: .line 338
            getstatic com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.BD_MAX_LONG:Ljava/math/BigDecimal;
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
            invokevirtual java.math.BigDecimal.compareTo:(Ljava/math/BigDecimal;)I
            ifge 23
        22: .line 339
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.reportOverflowLong:()V
        23: .line 341
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
            invokevirtual java.math.BigDecimal.longValue:()J
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
        24: .line 342
            goto 26
        25: .line 343
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._throwInternal:()V
        26: .line 345
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_2
            ior
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
        27: .line 346
            return
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   28     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
    Exceptions:
      throws java.io.IOException

  protected final void convertNumberToBigInteger();
    descriptor: ()V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 351
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 16
            iand
            ifeq 3
         1: .line 353
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
            invokevirtual java.math.BigDecimal.toBigInteger:()Ljava/math/BigInteger;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
         2: .line 354
            goto 16
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_2
            iand
            ifeq 6
         4: .line 355
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
            invokestatic java.math.BigInteger.valueOf:(J)Ljava/math/BigInteger;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
         5: .line 356
            goto 16
      StackMap locals:
      StackMap stack:
         6: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_1
            iand
            ifeq 9
         7: .line 357
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
            i2l
            invokestatic java.math.BigInteger.valueOf:(J)Ljava/math/BigInteger;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
         8: .line 358
            goto 16
      StackMap locals:
      StackMap stack:
         9: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 8
            iand
            ifeq 12
        10: .line 359
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
            invokestatic java.math.BigDecimal.valueOf:(D)Ljava/math/BigDecimal;
            invokevirtual java.math.BigDecimal.toBigInteger:()Ljava/math/BigInteger;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
        11: .line 360
            goto 16
      StackMap locals:
      StackMap stack:
        12: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 32
            iand
            ifeq 15
        13: .line 361
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            f2d
            invokestatic java.math.BigDecimal.valueOf:(D)Ljava/math/BigDecimal;
            invokevirtual java.math.BigDecimal.toBigInteger:()Ljava/math/BigInteger;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
        14: .line 362
            goto 16
        15: .line 363
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._throwInternal:()V
        16: .line 365
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_4
            ior
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
        17: .line 366
            return
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
    Exceptions:
      throws java.io.IOException

  protected final void convertNumberToFloat();
    descriptor: ()V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 372
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 16
            iand
            ifeq 3
         1: .line 373
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
            invokevirtual java.math.BigDecimal.floatValue:()F
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
         2: .line 374
            goto 16
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_4
            iand
            ifeq 6
         4: .line 375
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.floatValue:()F
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
         5: .line 376
            goto 16
      StackMap locals:
      StackMap stack:
         6: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 8
            iand
            ifeq 9
         7: .line 377
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
            d2f
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
         8: .line 378
            goto 16
      StackMap locals:
      StackMap stack:
         9: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_2
            iand
            ifeq 12
        10: .line 379
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
            l2f
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
        11: .line 380
            goto 16
      StackMap locals:
      StackMap stack:
        12: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_1
            iand
            ifeq 15
        13: .line 381
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
            i2f
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
        14: .line 382
            goto 16
        15: .line 383
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._throwInternal:()V
        16: .line 385
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 32
            ior
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
        17: .line 386
            return
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
    Exceptions:
      throws java.io.IOException

  protected final void convertNumberToDouble();
    descriptor: ()V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 393
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 16
            iand
            ifeq 3
         1: .line 394
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
            invokevirtual java.math.BigDecimal.doubleValue:()D
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
         2: .line 395
            goto 16
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 32
            iand
            ifeq 6
         4: .line 396
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            f2d
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
         5: .line 397
            goto 16
      StackMap locals:
      StackMap stack:
         6: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_4
            iand
            ifeq 9
         7: .line 398
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.doubleValue:()D
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
         8: .line 399
            goto 16
      StackMap locals:
      StackMap stack:
         9: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_2
            iand
            ifeq 12
        10: .line 400
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
            l2d
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
        11: .line 401
            goto 16
      StackMap locals:
      StackMap stack:
        12: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_1
            iand
            ifeq 15
        13: .line 402
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
            i2d
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
        14: .line 403
            goto 16
        15: .line 404
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._throwInternal:()V
        16: .line 406
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 8
            ior
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
        17: .line 407
            return
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
    Exceptions:
      throws java.io.IOException

  protected final void convertNumberToBigDecimal();
    descriptor: ()V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 414
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 8
            iand
            ifeq 3
         1: .line 417
            aload 0 /* this */
            new java.math.BigDecimal
            dup
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
            invokespecial java.math.BigDecimal.<init>:(D)V
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
         2: .line 418
            goto 16
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 32
            iand
            ifeq 6
         4: .line 419
            aload 0 /* this */
            new java.math.BigDecimal
            dup
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            f2d
            invokespecial java.math.BigDecimal.<init>:(D)V
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
         5: .line 420
            goto 16
      StackMap locals:
      StackMap stack:
         6: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_4
            iand
            ifeq 9
         7: .line 421
            aload 0 /* this */
            new java.math.BigDecimal
            dup
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
            invokespecial java.math.BigDecimal.<init>:(Ljava/math/BigInteger;)V
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
         8: .line 422
            goto 16
      StackMap locals:
      StackMap stack:
         9: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_2
            iand
            ifeq 12
        10: .line 423
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
            invokestatic java.math.BigDecimal.valueOf:(J)Ljava/math/BigDecimal;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
        11: .line 424
            goto 16
      StackMap locals:
      StackMap stack:
        12: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_1
            iand
            ifeq 15
        13: .line 425
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
            i2l
            invokestatic java.math.BigDecimal.valueOf:(J)Ljava/math/BigDecimal;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
        14: .line 426
            goto 16
        15: .line 427
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._throwInternal:()V
        16: .line 429
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 16
            ior
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
        17: .line 430
            return
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
    Exceptions:
      throws java.io.IOException

  public abstract boolean checkInputEnd();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public long getRemainingElements();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 445
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._avroContext:Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroReadContext.getRemainingElements:()J
            lreturn
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;

  public abstract com.fasterxml.jackson.core.JsonToken decodeIntToken();
    descriptor: ()Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract int decodeInt();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract void skipInt();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract com.fasterxml.jackson.core.JsonToken decodeLongToken();
    descriptor: ()Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract long decodeLong();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract void skipLong();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract com.fasterxml.jackson.core.JsonToken decodeFloat();
    descriptor: ()Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract void skipFloat();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract com.fasterxml.jackson.core.JsonToken decodeDouble();
    descriptor: ()Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract void skipDouble();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract com.fasterxml.jackson.core.JsonToken decodeStringToken();
    descriptor: ()Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract void decodeString();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract void skipString();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract com.fasterxml.jackson.core.JsonToken decodeBytes();
    descriptor: ()Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract void skipBytes();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract com.fasterxml.jackson.core.JsonToken decodeFixed(int);
    descriptor: (I)Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      size  

  public abstract void skipFixed(int);
    descriptor: (I)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      size  

  public abstract long decodeArrayStart();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract long decodeArrayNext();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract long skipArray();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract java.lang.String decodeMapKey();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract long decodeMapStart();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract long decodeMapNext();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract long skipMap();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract com.fasterxml.jackson.core.JsonToken decodeBoolean();
    descriptor: ()Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract void skipBoolean();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract int decodeIndex();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract int decodeEnum();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public final int branchIndex();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 572
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._branchIndex:I
            ireturn
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;

  public final int enumIndex();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 576
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._enumIndex:I
            ireturn
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;

  public final boolean isRecord();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 580
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._avroContext:Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
            instanceof com.fasterxml.jackson.dataformat.avro.deser.RecordReader
            ireturn
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;

  public final void setAvroContext(com.fasterxml.jackson.dataformat.avro.deser.AvroReadContext);
    descriptor: (Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
        start local 1 // com.fasterxml.jackson.dataformat.avro.deser.AvroReadContext ctxt
         0: .line 584
            aload 0 /* this */
            aload 1 /* ctxt */
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._avroContext:Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
         1: .line 585
            return
        end local 1 // com.fasterxml.jackson.dataformat.avro.deser.AvroReadContext ctxt
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            0    2     1  ctxt  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
    MethodParameters:
      Name  Flags
      ctxt  

  protected final com.fasterxml.jackson.core.JsonToken setBytes(byte[]);
    descriptor: ([B)Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
        start local 1 // byte[] b
         0: .line 595
            aload 0 /* this */
            aload 1 /* b */
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._binaryValue:[B
         1: .line 596
            getstatic com.fasterxml.jackson.core.JsonToken.VALUE_EMBEDDED_OBJECT:Lcom/fasterxml/jackson/core/JsonToken;
            areturn
        end local 1 // byte[] b
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            0    2     1     b  [B
    MethodParameters:
      Name  Flags
      b     

  protected final com.fasterxml.jackson.core.JsonToken setNumber(int);
    descriptor: (I)Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
        start local 1 // int v
         0: .line 600
            aload 0 /* this */
            iload 1 /* v */
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
         1: .line 601
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
         2: .line 602
            getstatic com.fasterxml.jackson.core.JsonToken.VALUE_NUMBER_INT:Lcom/fasterxml/jackson/core/JsonToken;
            areturn
        end local 1 // int v
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            0    3     1     v  I
    MethodParameters:
      Name  Flags
      v     

  protected final com.fasterxml.jackson.core.JsonToken setNumber(long);
    descriptor: (J)Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
        start local 1 // long v
         0: .line 606
            aload 0 /* this */
            lload 1 /* v */
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
         1: .line 607
            aload 0 /* this */
            iconst_2
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
         2: .line 608
            getstatic com.fasterxml.jackson.core.JsonToken.VALUE_NUMBER_INT:Lcom/fasterxml/jackson/core/JsonToken;
            areturn
        end local 1 // long v
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            0    3     1     v  J
    MethodParameters:
      Name  Flags
      v     

  protected final com.fasterxml.jackson.core.JsonToken setNumber(float);
    descriptor: (F)Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
        start local 1 // float v
         0: .line 612
            aload 0 /* this */
            fload 1 /* v */
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
         1: .line 613
            aload 0 /* this */
            bipush 32
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
         2: .line 614
            getstatic com.fasterxml.jackson.core.JsonToken.VALUE_NUMBER_FLOAT:Lcom/fasterxml/jackson/core/JsonToken;
            areturn
        end local 1 // float v
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            0    3     1     v  F
    MethodParameters:
      Name  Flags
      v     

  protected final com.fasterxml.jackson.core.JsonToken setNumber(double);
    descriptor: (D)Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
        start local 1 // double v
         0: .line 618
            aload 0 /* this */
            dload 1 /* v */
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
         1: .line 619
            aload 0 /* this */
            bipush 8
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
         2: .line 620
            getstatic com.fasterxml.jackson.core.JsonToken.VALUE_NUMBER_FLOAT:Lcom/fasterxml/jackson/core/JsonToken;
            areturn
        end local 1 // double v
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            0    3     1     v  D
    MethodParameters:
      Name  Flags
      v     

  protected abstract com.fasterxml.jackson.core.JsonToken setString(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      str   
}
SourceFile: "AvroParserImpl.java"
InnerClasses:
  public final NumberType = com.fasterxml.jackson.core.JsonParser$NumberType of com.fasterxml.jackson.core.JsonParser