public final class com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder extends com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder
  super_class: com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder
{
  private final int _size;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String _typeId;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(int, java.lang.String);
    descriptor: (ILjava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder this
        start local 1 // int fixedSize
        start local 2 // java.lang.String typeId
         0: .line 505
            aload 0 /* this */
            invokespecial com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder.<init>:()V
         1: .line 506
            aload 0 /* this */
            iload 1 /* fixedSize */
            putfield com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder._size:I
         2: .line 507
            aload 0 /* this */
            aload 2 /* typeId */
            putfield com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder._typeId:Ljava/lang/String;
         3: .line 508
            return
        end local 2 // java.lang.String typeId
        end local 1 // int fixedSize
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lcom/fasterxml/jackson/dataformat/avro/deser/ScalarDecoder$FixedDecoder;
            0    4     1  fixedSize  I
            0    4     2     typeId  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      fixedSize  
      typeId     

  public com.fasterxml.jackson.core.JsonToken decodeValue(com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl);
    descriptor: (Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;)Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder this
        start local 1 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl parser
         0: .line 512
            aload 1 /* parser */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder._size:I
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.decodeFixed:(I)Lcom/fasterxml/jackson/core/JsonToken;
            areturn
        end local 1 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl parser
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/fasterxml/jackson/dataformat/avro/deser/ScalarDecoder$FixedDecoder;
            0    1     1  parser  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      parser  

  protected void skipValue(com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl);
    descriptor: (Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder this
        start local 1 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl parser
         0: .line 517
            aload 1 /* parser */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder._size:I
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.skipFixed:(I)V
         1: .line 518
            return
        end local 1 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl parser
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/fasterxml/jackson/dataformat/avro/deser/ScalarDecoder$FixedDecoder;
            0    2     1  parser  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      parser  

  public java.lang.String getTypeId();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder this
         0: .line 522
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder._typeId:Ljava/lang/String;
            areturn
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/ScalarDecoder$FixedDecoder;

  public com.fasterxml.jackson.dataformat.avro.deser.AvroFieldReader asFieldReader(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)Lcom/fasterxml/jackson/dataformat/avro/deser/AvroFieldReader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder this
        start local 1 // java.lang.String name
        start local 2 // boolean skipper
         0: .line 527
            new com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder$FR
            dup
            aload 1 /* name */
            iload 2 /* skipper */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder._size:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder._typeId:Ljava/lang/String;
            invokespecial com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder$FR.<init>:(Ljava/lang/String;ZILjava/lang/String;)V
            areturn
        end local 2 // boolean skipper
        end local 1 // java.lang.String name
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/fasterxml/jackson/dataformat/avro/deser/ScalarDecoder$FixedDecoder;
            0    1     1     name  Ljava/lang/String;
            0    1     2  skipper  Z
    MethodParameters:
         Name  Flags
      name     
      skipper  
}
SourceFile: "ScalarDecoder.java"
NestHost: com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder
InnerClasses:
  protected final FixedDecoder = com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder of com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder
  private final FR = com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder$FR of com.fasterxml.jackson.dataformat.avro.deser.ScalarDecoder$FixedDecoder