public final class android.nfc.TransceiveResult implements android.os.Parcelable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: android.nfc.TransceiveResult
  super_class: java.lang.Object
{
  public static final int RESULT_SUCCESS;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

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

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

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

  final int mResult;
    descriptor: I
    flags: (0x0010) ACC_FINAL

  final byte[] mResponseData;
    descriptor: [B
    flags: (0x0010) ACC_FINAL

  public static final android.os.Parcelable$Creator<android.nfc.TransceiveResult> CREATOR;
    descriptor: Landroid/os/Parcelable$Creator;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Signature: Landroid/os/Parcelable$Creator<Landroid/nfc/TransceiveResult;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 71
            new android.nfc.TransceiveResult$1
            dup
            invokespecial android.nfc.TransceiveResult$1.<init>:()V
         1: .line 70
            putstatic android.nfc.TransceiveResult.CREATOR:Landroid/os/Parcelable$Creator;
         2: .line 91
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(int, byte[]);
    descriptor: (I[B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // android.nfc.TransceiveResult this
        start local 1 // int result
        start local 2 // byte[] data
         0: .line 38
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 39
            aload 0 /* this */
            iload 1 /* result */
            putfield android.nfc.TransceiveResult.mResult:I
         2: .line 40
            aload 0 /* this */
            aload 2 /* data */
            putfield android.nfc.TransceiveResult.mResponseData:[B
         3: .line 41
            return
        end local 2 // byte[] data
        end local 1 // int result
        end local 0 // android.nfc.TransceiveResult this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Landroid/nfc/TransceiveResult;
            0    4     1  result  I
            0    4     2    data  [B
    MethodParameters:
        Name  Flags
      result  final
      data    final

  public byte[] getResponseOrThrow();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // android.nfc.TransceiveResult this
         0: .line 44
            aload 0 /* this */
            getfield android.nfc.TransceiveResult.mResult:I
            tableswitch { // 0 - 3
                    0: 1
                    1: 4
                    2: 2
                    3: 3
              default: 4
          }
         1: .line 46
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.nfc.TransceiveResult.mResponseData:[B
            areturn
         2: .line 48
      StackMap locals:
      StackMap stack:
            new android.nfc.TagLostException
            dup
            ldc "Tag was lost."
            invokespecial android.nfc.TagLostException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 50
      StackMap locals:
      StackMap stack:
            new java.io.IOException
            dup
            ldc "Transceive length exceeds supported maximum"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 52
      StackMap locals:
      StackMap stack:
            new java.io.IOException
            dup
            ldc "Transceive failed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // android.nfc.TransceiveResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Landroid/nfc/TransceiveResult;
    Exceptions:
      throws java.io.IOException

  public int describeContents();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.nfc.TransceiveResult this
         0: .line 58
            iconst_0
            ireturn
        end local 0 // android.nfc.TransceiveResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/nfc/TransceiveResult;

  public void writeToParcel(android.os.Parcel, int);
    descriptor: (Landroid/os/Parcel;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // android.nfc.TransceiveResult this
        start local 1 // android.os.Parcel dest
        start local 2 // int flags
         0: .line 63
            aload 1 /* dest */
            aload 0 /* this */
            getfield android.nfc.TransceiveResult.mResult:I
            invokevirtual android.os.Parcel.writeInt:(I)V
         1: .line 64
            aload 0 /* this */
            getfield android.nfc.TransceiveResult.mResult:I
            ifne 4
         2: .line 65
            aload 1 /* dest */
            aload 0 /* this */
            getfield android.nfc.TransceiveResult.mResponseData:[B
            arraylength
            invokevirtual android.os.Parcel.writeInt:(I)V
         3: .line 66
            aload 1 /* dest */
            aload 0 /* this */
            getfield android.nfc.TransceiveResult.mResponseData:[B
            invokevirtual android.os.Parcel.writeByteArray:([B)V
         4: .line 68
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int flags
        end local 1 // android.os.Parcel dest
        end local 0 // android.nfc.TransceiveResult this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Landroid/nfc/TransceiveResult;
            0    5     1   dest  Landroid/os/Parcel;
            0    5     2  flags  I
    MethodParameters:
       Name  Flags
      dest   
      flags  
}
SourceFile: "TransceiveResult.java"
NestMembers:
  android.nfc.TransceiveResult$1
InnerClasses:
  android.nfc.TransceiveResult$1
  public abstract Creator = android.os.Parcelable$Creator of android.os.Parcelable