public class sun.print.AttributeClass
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.print.AttributeClass
  super_class: java.lang.Object
{
  private java.lang.String myName;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

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

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

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

  public static final int TAG_UNSUPPORTED_VALUE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 16

  public static final int TAG_INT;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 33

  public static final int TAG_BOOL;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 34

  public static final int TAG_ENUM;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 35

  public static final int TAG_OCTET;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 48

  public static final int TAG_DATE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 49

  public static final int TAG_RESOLUTION;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 50

  public static final int TAG_RANGE_INTEGER;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 51

  public static final int TAG_TEXT_LANGUAGE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 53

  public static final int TAG_NAME_LANGUAGE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 54

  public static final int TAG_TEXT_WO_LANGUAGE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 65

  public static final int TAG_NAME_WO_LANGUAGE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 66

  public static final int TAG_KEYWORD;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 68

  public static final int TAG_URI;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 69

  public static final int TAG_CHARSET;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 71

  public static final int TAG_NATURALLANGUAGE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 72

  public static final int TAG_MIME_MEDIATYPE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 73

  public static final int TAG_MEMBER_ATTRNAME;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 74

  public static final sun.print.AttributeClass ATTRIBUTES_CHARSET;
    descriptor: Lsun/print/AttributeClass;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final sun.print.AttributeClass ATTRIBUTES_NATURAL_LANGUAGE;
    descriptor: Lsun/print/AttributeClass;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=0, args_size=0
         0: .line 59
            new sun.print.AttributeClass
            dup
            ldc "attributes-charset"
         1: .line 60
            bipush 71
            ldc "utf-8"
         2: .line 59
            invokespecial sun.print.AttributeClass.<init>:(Ljava/lang/String;ILjava/lang/Object;)V
         3: .line 58
            putstatic sun.print.AttributeClass.ATTRIBUTES_CHARSET:Lsun/print/AttributeClass;
         4: .line 62
            new sun.print.AttributeClass
            dup
            ldc "attributes-natural-language"
         5: .line 63
            bipush 72
            ldc "en"
         6: .line 62
            invokespecial sun.print.AttributeClass.<init>:(Ljava/lang/String;ILjava/lang/Object;)V
         7: .line 61
            putstatic sun.print.AttributeClass.ATTRIBUTES_NATURAL_LANGUAGE:Lsun/print/AttributeClass;
         8: .line 63
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void <init>(java.lang.String, int, java.lang.Object);
    descriptor: (Ljava/lang/String;ILjava/lang/Object;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // sun.print.AttributeClass this
        start local 1 // java.lang.String name
        start local 2 // int type
        start local 3 // java.lang.Object value
         0: .line 72
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 73
            aload 0 /* this */
            aload 1 /* name */
            putfield sun.print.AttributeClass.myName:Ljava/lang/String;
         2: .line 74
            aload 0 /* this */
            iload 2 /* type */
            putfield sun.print.AttributeClass.myType:I
         3: .line 75
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual java.lang.String.length:()I
            putfield sun.print.AttributeClass.nameLen:I
         4: .line 76
            aload 0 /* this */
            aload 3 /* value */
            putfield sun.print.AttributeClass.myValue:Ljava/lang/Object;
         5: .line 77
            return
        end local 3 // java.lang.Object value
        end local 2 // int type
        end local 1 // java.lang.String name
        end local 0 // sun.print.AttributeClass this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lsun/print/AttributeClass;
            0    6     1   name  Ljava/lang/String;
            0    6     2   type  I
            0    6     3  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      name   
      type   
      value  

  public byte getType();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.print.AttributeClass this
         0: .line 80
            aload 0 /* this */
            getfield sun.print.AttributeClass.myType:I
            i2b
            ireturn
        end local 0 // sun.print.AttributeClass this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/print/AttributeClass;

  public char[] getLenChars();
    descriptor: ()[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // sun.print.AttributeClass this
         0: .line 84
            iconst_2
            newarray 5
            astore 1 /* chars */
        start local 1 // char[] chars
         1: .line 85
            aload 1 /* chars */
            iconst_0
            iconst_0
            castore
         2: .line 86
            aload 1 /* chars */
            iconst_1
            aload 0 /* this */
            getfield sun.print.AttributeClass.nameLen:I
            i2c
            castore
         3: .line 87
            aload 1 /* chars */
            areturn
        end local 1 // char[] chars
        end local 0 // sun.print.AttributeClass this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lsun/print/AttributeClass;
            1    4     1  chars  [C

  public java.lang.Object getObjectValue();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.print.AttributeClass this
         0: .line 94
            aload 0 /* this */
            getfield sun.print.AttributeClass.myValue:Ljava/lang/Object;
            areturn
        end local 0 // sun.print.AttributeClass this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/print/AttributeClass;

  public int getIntValue();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // sun.print.AttributeClass this
         0: .line 101
            aload 0 /* this */
            getfield sun.print.AttributeClass.myValue:Ljava/lang/Object;
            checkcast byte[]
            astore 1 /* bufArray */
        start local 1 // byte[] bufArray
         1: .line 103
            aload 1 /* bufArray */
            ifnull 9
         2: .line 104
            iconst_4
            newarray 8
            astore 2 /* buf */
        start local 2 // byte[] buf
         3: .line 105
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: goto 7
         5: .line 106
      StackMap locals: byte[] byte[] int
      StackMap stack:
            aload 2 /* buf */
            iload 3 /* i */
            aload 1 /* bufArray */
            iload 3 /* i */
            iconst_1
            iadd
            baload
            bastore
         6: .line 105
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 3 /* i */
            iconst_4
            if_icmplt 5
        end local 3 // int i
         8: .line 109
            aload 0 /* this */
            aload 2 /* buf */
            invokevirtual sun.print.AttributeClass.convertToInt:([B)I
            ireturn
        end local 2 // byte[] buf
         9: .line 111
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // byte[] bufArray
        end local 0 // sun.print.AttributeClass this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Lsun/print/AttributeClass;
            1   10     1  bufArray  [B
            3    9     2       buf  [B
            4    8     3         i  I

  public int[] getArrayOfIntValues();
    descriptor: ()[I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=1
        start local 0 // sun.print.AttributeClass this
         0: .line 119
            aload 0 /* this */
            getfield sun.print.AttributeClass.myValue:Ljava/lang/Object;
            checkcast byte[]
            astore 1 /* bufArray */
        start local 1 // byte[] bufArray
         1: .line 120
            aload 1 /* bufArray */
            ifnull 21
         2: .line 124
            new java.io.ByteArrayInputStream
            dup
            aload 1 /* bufArray */
            invokespecial java.io.ByteArrayInputStream.<init>:([B)V
         3: .line 123
            astore 2 /* bufStream */
        start local 2 // java.io.ByteArrayInputStream bufStream
         4: .line 125
            aload 2 /* bufStream */
            invokevirtual java.io.ByteArrayInputStream.available:()I
            istore 3 /* available */
        start local 3 // int available
         5: .line 128
            aload 2 /* bufStream */
            iload 3 /* available */
            invokevirtual java.io.ByteArrayInputStream.mark:(I)V
         6: .line 129
            aload 2 /* bufStream */
            iload 3 /* available */
            iconst_1
            isub
            i2l
            invokevirtual java.io.ByteArrayInputStream.skip:(J)J
            pop2
         7: .line 130
            aload 2 /* bufStream */
            invokevirtual java.io.ByteArrayInputStream.read:()I
            istore 4 /* length */
        start local 4 // int length
         8: .line 131
            aload 2 /* bufStream */
            invokevirtual java.io.ByteArrayInputStream.reset:()V
         9: .line 133
            iload 4 /* length */
            newarray 10
            astore 5 /* valueArray */
        start local 5 // int[] valueArray
        10: .line 134
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        11: goto 19
        12: .line 136
      StackMap locals: sun.print.AttributeClass byte[] java.io.ByteArrayInputStream int int int[] int
      StackMap stack:
            aload 2 /* bufStream */
            invokevirtual java.io.ByteArrayInputStream.read:()I
            istore 7 /* valLength */
        start local 7 // int valLength
        13: .line 137
            iload 7 /* valLength */
            iconst_4
            if_icmpeq 15
        14: .line 139
            aconst_null
            areturn
        15: .line 142
      StackMap locals: int
      StackMap stack:
            iload 7 /* valLength */
            newarray 8
            astore 8 /* bufBytes */
        start local 8 // byte[] bufBytes
        16: .line 143
            aload 2 /* bufStream */
            aload 8 /* bufBytes */
            iconst_0
            iload 7 /* valLength */
            invokevirtual java.io.ByteArrayInputStream.read:([BII)I
            pop
        17: .line 144
            aload 5 /* valueArray */
            iload 6 /* i */
            aload 0 /* this */
            aload 8 /* bufBytes */
            invokevirtual sun.print.AttributeClass.convertToInt:([B)I
            iastore
        end local 8 // byte[] bufBytes
        end local 7 // int valLength
        18: .line 134
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        19: iload 6 /* i */
            iload 4 /* length */
            if_icmplt 12
        end local 6 // int i
        20: .line 147
            aload 5 /* valueArray */
            areturn
        end local 5 // int[] valueArray
        end local 4 // int length
        end local 3 // int available
        end local 2 // java.io.ByteArrayInputStream bufStream
        21: .line 149
      StackMap locals: sun.print.AttributeClass byte[]
      StackMap stack:
            aconst_null
            areturn
        end local 1 // byte[] bufArray
        end local 0 // sun.print.AttributeClass this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   22     0        this  Lsun/print/AttributeClass;
            1   22     1    bufArray  [B
            4   21     2   bufStream  Ljava/io/ByteArrayInputStream;
            5   21     3   available  I
            8   21     4      length  I
           10   21     5  valueArray  [I
           11   20     6           i  I
           13   18     7   valLength  I
           16   18     8    bufBytes  [B

  public int[] getIntRangeValue();
    descriptor: ()[I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=1
        start local 0 // sun.print.AttributeClass this
         0: .line 156
            iconst_2
            newarray 10
            astore 1 /* range */
        start local 1 // int[] range
         1: .line 157
            aload 0 /* this */
            getfield sun.print.AttributeClass.myValue:Ljava/lang/Object;
            checkcast byte[]
            astore 2 /* bufArray */
        start local 2 // byte[] bufArray
         2: .line 158
            aload 2 /* bufArray */
            ifnull 15
         3: .line 159
            iconst_4
            istore 3 /* nBytes */
        start local 3 // int nBytes
         4: .line 160
            iconst_0
            istore 4 /* j */
        start local 4 // int j
         5: goto 14
         6: .line 161
      StackMap locals: sun.print.AttributeClass int[] byte[] int int
      StackMap stack:
            iload 3 /* nBytes */
            newarray 8
            astore 5 /* intBytes */
        start local 5 // byte[] intBytes
         7: .line 163
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         8: goto 11
         9: .line 165
      StackMap locals: byte[] int
      StackMap stack:
            aload 5 /* intBytes */
            iload 6 /* i */
            aload 2 /* bufArray */
            iload 6 /* i */
            iconst_4
            iload 4 /* j */
            imul
            iadd
            iconst_1
            iadd
            baload
            bastore
        10: .line 163
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 6 /* i */
            iload 3 /* nBytes */
            if_icmplt 9
        end local 6 // int i
        12: .line 167
            aload 1 /* range */
            iload 4 /* j */
            aload 0 /* this */
            aload 5 /* intBytes */
            invokevirtual sun.print.AttributeClass.convertToInt:([B)I
            iastore
        end local 5 // byte[] intBytes
        13: .line 160
            iinc 4 /* j */ 1
      StackMap locals:
      StackMap stack:
        14: iload 4 /* j */
            iconst_2
            if_icmplt 6
        end local 4 // int j
        end local 3 // int nBytes
        15: .line 170
      StackMap locals:
      StackMap stack:
            aload 1 /* range */
            areturn
        end local 2 // byte[] bufArray
        end local 1 // int[] range
        end local 0 // sun.print.AttributeClass this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   16     0      this  Lsun/print/AttributeClass;
            1   16     1     range  [I
            2   16     2  bufArray  [B
            4   15     3    nBytes  I
            5   15     4         j  I
            7   13     5  intBytes  [B
            8   12     6         i  I

  public java.lang.String getStringValue();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // sun.print.AttributeClass this
         0: .line 180
            aconst_null
            astore 1 /* strVal */
        start local 1 // java.lang.String strVal
         1: .line 181
            aload 0 /* this */
            getfield sun.print.AttributeClass.myValue:Ljava/lang/Object;
            checkcast byte[]
            astore 2 /* bufArray */
        start local 2 // byte[] bufArray
         2: .line 182
            aload 2 /* bufArray */
            ifnull 11
         3: .line 184
            new java.io.ByteArrayInputStream
            dup
            aload 2 /* bufArray */
            invokespecial java.io.ByteArrayInputStream.<init>:([B)V
         4: .line 183
            astore 3 /* bufStream */
        start local 3 // java.io.ByteArrayInputStream bufStream
         5: .line 186
            aload 3 /* bufStream */
            invokevirtual java.io.ByteArrayInputStream.read:()I
            istore 4 /* valLength */
        start local 4 // int valLength
         6: .line 188
            iload 4 /* valLength */
            newarray 8
            astore 5 /* strBytes */
        start local 5 // byte[] strBytes
         7: .line 189
            aload 3 /* bufStream */
            aload 5 /* strBytes */
            iconst_0
            iload 4 /* valLength */
            invokevirtual java.io.ByteArrayInputStream.read:([BII)I
            pop
         8: .line 191
            new java.lang.String
            dup
            aload 5 /* strBytes */
            ldc "UTF-8"
            invokespecial java.lang.String.<init>:([BLjava/lang/String;)V
            astore 1 /* strVal */
         9: .line 192
            goto 11
      StackMap locals: sun.print.AttributeClass java.lang.String byte[] java.io.ByteArrayInputStream int byte[]
      StackMap stack: java.io.UnsupportedEncodingException
        10: pop
        end local 5 // byte[] strBytes
        end local 4 // int valLength
        end local 3 // java.io.ByteArrayInputStream bufStream
        11: .line 195
      StackMap locals:
      StackMap stack:
            aload 1 /* strVal */
            areturn
        end local 2 // byte[] bufArray
        end local 1 // java.lang.String strVal
        end local 0 // sun.print.AttributeClass this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lsun/print/AttributeClass;
            1   12     1     strVal  Ljava/lang/String;
            2   12     2   bufArray  [B
            5   11     3  bufStream  Ljava/io/ByteArrayInputStream;
            6   11     4  valLength  I
            7   11     5   strBytes  [B
      Exception table:
        from    to  target  type
           8     9      10  Class java.io.UnsupportedEncodingException

  public java.lang.String[] getArrayOfStringValues();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=9, args_size=1
        start local 0 // sun.print.AttributeClass this
         0: .line 204
            aload 0 /* this */
            getfield sun.print.AttributeClass.myValue:Ljava/lang/Object;
            checkcast byte[]
            astore 1 /* bufArray */
        start local 1 // byte[] bufArray
         1: .line 205
            aload 1 /* bufArray */
            ifnull 21
         2: .line 207
            new java.io.ByteArrayInputStream
            dup
            aload 1 /* bufArray */
            invokespecial java.io.ByteArrayInputStream.<init>:([B)V
         3: .line 206
            astore 2 /* bufStream */
        start local 2 // java.io.ByteArrayInputStream bufStream
         4: .line 208
            aload 2 /* bufStream */
            invokevirtual java.io.ByteArrayInputStream.available:()I
            istore 3 /* available */
        start local 3 // int available
         5: .line 211
            aload 2 /* bufStream */
            iload 3 /* available */
            invokevirtual java.io.ByteArrayInputStream.mark:(I)V
         6: .line 212
            aload 2 /* bufStream */
            iload 3 /* available */
            iconst_1
            isub
            i2l
            invokevirtual java.io.ByteArrayInputStream.skip:(J)J
            pop2
         7: .line 213
            aload 2 /* bufStream */
            invokevirtual java.io.ByteArrayInputStream.read:()I
            istore 4 /* length */
        start local 4 // int length
         8: .line 214
            aload 2 /* bufStream */
            invokevirtual java.io.ByteArrayInputStream.reset:()V
         9: .line 216
            iload 4 /* length */
            anewarray java.lang.String
            astore 5 /* valueArray */
        start local 5 // java.lang.String[] valueArray
        10: .line 217
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        11: goto 19
        12: .line 219
      StackMap locals: sun.print.AttributeClass byte[] java.io.ByteArrayInputStream int int java.lang.String[] int
      StackMap stack:
            aload 2 /* bufStream */
            invokevirtual java.io.ByteArrayInputStream.read:()I
            istore 7 /* valLength */
        start local 7 // int valLength
        13: .line 220
            iload 7 /* valLength */
            newarray 8
            astore 8 /* bufBytes */
        start local 8 // byte[] bufBytes
        14: .line 221
            aload 2 /* bufStream */
            aload 8 /* bufBytes */
            iconst_0
            iload 7 /* valLength */
            invokevirtual java.io.ByteArrayInputStream.read:([BII)I
            pop
        15: .line 223
            aload 5 /* valueArray */
            iload 6 /* i */
            new java.lang.String
            dup
            aload 8 /* bufBytes */
            ldc "UTF-8"
            invokespecial java.lang.String.<init>:([BLjava/lang/String;)V
            aastore
        16: .line 224
            goto 18
      StackMap locals: sun.print.AttributeClass byte[] java.io.ByteArrayInputStream int int java.lang.String[] int int byte[]
      StackMap stack: java.io.UnsupportedEncodingException
        17: pop
        end local 8 // byte[] bufBytes
        end local 7 // int valLength
        18: .line 217
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        19: iload 6 /* i */
            iload 4 /* length */
            if_icmplt 12
        end local 6 // int i
        20: .line 227
            aload 5 /* valueArray */
            areturn
        end local 5 // java.lang.String[] valueArray
        end local 4 // int length
        end local 3 // int available
        end local 2 // java.io.ByteArrayInputStream bufStream
        21: .line 229
      StackMap locals: sun.print.AttributeClass byte[]
      StackMap stack:
            aconst_null
            areturn
        end local 1 // byte[] bufArray
        end local 0 // sun.print.AttributeClass this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   22     0        this  Lsun/print/AttributeClass;
            1   22     1    bufArray  [B
            4   21     2   bufStream  Ljava/io/ByteArrayInputStream;
            5   21     3   available  I
            8   21     4      length  I
           10   21     5  valueArray  [Ljava/lang/String;
           11   20     6           i  I
           13   18     7   valLength  I
           14   18     8    bufBytes  [B
      Exception table:
        from    to  target  type
          15    16      17  Class java.io.UnsupportedEncodingException

  public byte getByteValue();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // sun.print.AttributeClass this
         0: .line 237
            aload 0 /* this */
            getfield sun.print.AttributeClass.myValue:Ljava/lang/Object;
            checkcast byte[]
            astore 1 /* bufArray */
        start local 1 // byte[] bufArray
         1: .line 239
            aload 1 /* bufArray */
            ifnull 3
            aload 1 /* bufArray */
            arraylength
            iconst_2
            if_icmplt 3
         2: .line 240
            aload 1 /* bufArray */
            iconst_1
            baload
            ireturn
         3: .line 242
      StackMap locals: byte[]
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // byte[] bufArray
        end local 0 // sun.print.AttributeClass this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lsun/print/AttributeClass;
            1    4     1  bufArray  [B

  public java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.print.AttributeClass this
         0: .line 249
            aload 0 /* this */
            getfield sun.print.AttributeClass.myName:Ljava/lang/String;
            areturn
        end local 0 // sun.print.AttributeClass this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/print/AttributeClass;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // sun.print.AttributeClass this
        start local 1 // java.lang.Object obj
         0: .line 254
            aload 1 /* obj */
            instanceof sun.print.AttributeClass
            ifne 2
         1: .line 255
            iconst_0
            ireturn
         2: .line 257
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 4
         3: .line 258
            iconst_1
            ireturn
         4: .line 261
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast sun.print.AttributeClass
            astore 2 /* acObj */
        start local 2 // sun.print.AttributeClass acObj
         5: .line 262
            aload 0 /* this */
            getfield sun.print.AttributeClass.myType:I
            aload 2 /* acObj */
            invokevirtual sun.print.AttributeClass.getType:()B
            if_icmpne 9
         6: .line 263
            aload 0 /* this */
            getfield sun.print.AttributeClass.myName:Ljava/lang/String;
            aload 2 /* acObj */
            invokevirtual sun.print.AttributeClass.getName:()Ljava/lang/String;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 9
         7: .line 264
            aload 0 /* this */
            getfield sun.print.AttributeClass.myValue:Ljava/lang/Object;
            aload 2 /* acObj */
            invokevirtual sun.print.AttributeClass.getObjectValue:()Ljava/lang/Object;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 9
         8: .line 262
            iconst_1
            ireturn
      StackMap locals: sun.print.AttributeClass
      StackMap stack:
         9: iconst_0
            ireturn
        end local 2 // sun.print.AttributeClass acObj
        end local 1 // java.lang.Object obj
        end local 0 // sun.print.AttributeClass this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lsun/print/AttributeClass;
            0   10     1    obj  Ljava/lang/Object;
            5   10     2  acObj  Lsun/print/AttributeClass;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // sun.print.AttributeClass this
         0: .line 269
            iconst_3
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield sun.print.AttributeClass.myType:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield sun.print.AttributeClass.myName:Ljava/lang/String;
            aastore
            dup
            iconst_2
            aload 0 /* this */
            getfield sun.print.AttributeClass.myValue:Ljava/lang/Object;
            aastore
            invokestatic java.util.Objects.hash:([Ljava/lang/Object;)I
            ireturn
        end local 0 // sun.print.AttributeClass this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/print/AttributeClass;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.print.AttributeClass this
         0: .line 273
            aload 0 /* this */
            getfield sun.print.AttributeClass.myName:Ljava/lang/String;
            areturn
        end local 0 // sun.print.AttributeClass this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/print/AttributeClass;

  private int unsignedByteToInt(byte);
    descriptor: (B)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.print.AttributeClass this
        start local 1 // byte b
         0: .line 277
            iload 1 /* b */
            sipush 255
            iand
            ireturn
        end local 1 // byte b
        end local 0 // sun.print.AttributeClass this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/print/AttributeClass;
            0    1     1     b  B
    MethodParameters:
      Name  Flags
      b     

  private int convertToInt(byte[]);
    descriptor: ([B)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // sun.print.AttributeClass this
        start local 1 // byte[] buf
         0: .line 281
            iconst_0
            istore 2 /* intVal */
        start local 2 // int intVal
         1: .line 282
            iconst_0
            istore 3 /* pos */
        start local 3 // int pos
         2: .line 283
            iload 2 /* intVal */
            aload 0 /* this */
            aload 1 /* buf */
            iload 3 /* pos */
            iinc 3 /* pos */ 1
            baload
            invokevirtual sun.print.AttributeClass.unsignedByteToInt:(B)I
            bipush 24
            ishl
            iadd
            istore 2 /* intVal */
         3: .line 284
            iload 2 /* intVal */
            aload 0 /* this */
            aload 1 /* buf */
            iload 3 /* pos */
            iinc 3 /* pos */ 1
            baload
            invokevirtual sun.print.AttributeClass.unsignedByteToInt:(B)I
            bipush 16
            ishl
            iadd
            istore 2 /* intVal */
         4: .line 285
            iload 2 /* intVal */
            aload 0 /* this */
            aload 1 /* buf */
            iload 3 /* pos */
            iinc 3 /* pos */ 1
            baload
            invokevirtual sun.print.AttributeClass.unsignedByteToInt:(B)I
            bipush 8
            ishl
            iadd
            istore 2 /* intVal */
         5: .line 286
            iload 2 /* intVal */
            aload 0 /* this */
            aload 1 /* buf */
            iload 3 /* pos */
            iinc 3 /* pos */ 1
            baload
            invokevirtual sun.print.AttributeClass.unsignedByteToInt:(B)I
            iconst_0
            ishl
            iadd
            istore 2 /* intVal */
         6: .line 287
            iload 2 /* intVal */
            ireturn
        end local 3 // int pos
        end local 2 // int intVal
        end local 1 // byte[] buf
        end local 0 // sun.print.AttributeClass this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lsun/print/AttributeClass;
            0    7     1     buf  [B
            1    7     2  intVal  I
            2    7     3     pos  I
    MethodParameters:
      Name  Flags
      buf   
}
SourceFile: "AttributeClass.java"