public final class android.app.RemoteInput$Builder
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: android.app.RemoteInput$Builder
  super_class: java.lang.Object
{
  private final java.lang.String mResultKey;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final android.util.ArraySet<java.lang.String> mAllowedDataTypes;
    descriptor: Landroid/util/ArraySet;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Landroid/util/ArraySet<Ljava/lang/String;>;

  private final android.os.Bundle mExtras;
    descriptor: Landroid/os/Bundle;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.lang.CharSequence mLabel;
    descriptor: Ljava/lang/CharSequence;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.CharSequence[] mChoices;
    descriptor: [Ljava/lang/CharSequence;
    flags: (0x0002) ACC_PRIVATE

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

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.app.RemoteInput$Builder this
        start local 1 // java.lang.String resultKey
         0: .line 194
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 183
            aload 0 /* this */
            new android.util.ArraySet
            dup
            invokespecial android.util.ArraySet.<init>:()V
            putfield android.app.RemoteInput$Builder.mAllowedDataTypes:Landroid/util/ArraySet;
         2: .line 184
            aload 0 /* this */
            new android.os.Bundle
            dup
            invokespecial android.os.Bundle.<init>:()V
            putfield android.app.RemoteInput$Builder.mExtras:Landroid/os/Bundle;
         3: .line 187
            aload 0 /* this */
            iconst_1
            putfield android.app.RemoteInput$Builder.mFlags:I
         4: .line 195
            aload 1 /* resultKey */
            ifnonnull 6
         5: .line 196
            new java.lang.IllegalArgumentException
            dup
            ldc "Result key can't be null"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 198
      StackMap locals: android.app.RemoteInput$Builder java.lang.String
      StackMap stack:
            aload 0 /* this */
            aload 1 /* resultKey */
            putfield android.app.RemoteInput$Builder.mResultKey:Ljava/lang/String;
         7: .line 199
            return
        end local 1 // java.lang.String resultKey
        end local 0 // android.app.RemoteInput$Builder this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Landroid/app/RemoteInput$Builder;
            0    8     1  resultKey  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      resultKey  

  public android.app.RemoteInput$Builder setLabel(java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;)Landroid/app/RemoteInput$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.app.RemoteInput$Builder this
        start local 1 // java.lang.CharSequence label
         0: .line 209
            aload 0 /* this */
            aload 1 /* label */
            invokestatic android.app.Notification.safeCharSequence:(Ljava/lang/CharSequence;)Ljava/lang/CharSequence;
            putfield android.app.RemoteInput$Builder.mLabel:Ljava/lang/CharSequence;
         1: .line 210
            aload 0 /* this */
            areturn
        end local 1 // java.lang.CharSequence label
        end local 0 // android.app.RemoteInput$Builder this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Landroid/app/RemoteInput$Builder;
            0    2     1  label  Ljava/lang/CharSequence;
    MethodParameters:
       Name  Flags
      label  

  public android.app.RemoteInput$Builder setChoices(java.lang.CharSequence[]);
    descriptor: ([Ljava/lang/CharSequence;)Landroid/app/RemoteInput$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // android.app.RemoteInput$Builder this
        start local 1 // java.lang.CharSequence[] choices
         0: .line 227
            aload 1 /* choices */
            ifnonnull 3
         1: .line 228
            aload 0 /* this */
            aconst_null
            putfield android.app.RemoteInput$Builder.mChoices:[Ljava/lang/CharSequence;
         2: .line 229
            goto 9
         3: .line 230
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* choices */
            arraylength
            anewarray java.lang.CharSequence
            putfield android.app.RemoteInput$Builder.mChoices:[Ljava/lang/CharSequence;
         4: .line 231
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         5: goto 8
         6: .line 232
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield android.app.RemoteInput$Builder.mChoices:[Ljava/lang/CharSequence;
            iload 2 /* i */
            aload 1 /* choices */
            iload 2 /* i */
            aaload
            invokestatic android.app.Notification.safeCharSequence:(Ljava/lang/CharSequence;)Ljava/lang/CharSequence;
            aastore
         7: .line 231
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 2 /* i */
            aload 1 /* choices */
            arraylength
            if_icmplt 6
        end local 2 // int i
         9: .line 235
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // java.lang.CharSequence[] choices
        end local 0 // android.app.RemoteInput$Builder this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Landroid/app/RemoteInput$Builder;
            0   10     1  choices  [Ljava/lang/CharSequence;
            5    9     2        i  I
    MethodParameters:
         Name  Flags
      choices  

  public android.app.RemoteInput$Builder setAllowDataType(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)Landroid/app/RemoteInput$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // android.app.RemoteInput$Builder this
        start local 1 // java.lang.String mimeType
        start local 2 // boolean doAllow
         0: .line 252
            iload 2 /* doAllow */
            ifeq 3
         1: .line 253
            aload 0 /* this */
            getfield android.app.RemoteInput$Builder.mAllowedDataTypes:Landroid/util/ArraySet;
            aload 1 /* mimeType */
            invokevirtual android.util.ArraySet.add:(Ljava/lang/Object;)Z
            pop
         2: .line 254
            goto 4
         3: .line 255
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.app.RemoteInput$Builder.mAllowedDataTypes:Landroid/util/ArraySet;
            aload 1 /* mimeType */
            invokevirtual android.util.ArraySet.remove:(Ljava/lang/Object;)Z
            pop
         4: .line 257
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 2 // boolean doAllow
        end local 1 // java.lang.String mimeType
        end local 0 // android.app.RemoteInput$Builder this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Landroid/app/RemoteInput$Builder;
            0    5     1  mimeType  Ljava/lang/String;
            0    5     2   doAllow  Z
    MethodParameters:
          Name  Flags
      mimeType  
      doAllow   

  public android.app.RemoteInput$Builder setAllowFreeFormInput(boolean);
    descriptor: (Z)Landroid/app/RemoteInput$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.app.RemoteInput$Builder this
        start local 1 // boolean allowFreeFormTextInput
         0: .line 272
            aload 0 /* this */
            aload 0 /* this */
            getfield android.app.RemoteInput$Builder.mFlags:I
            iload 1 /* allowFreeFormTextInput */
            invokevirtual android.app.RemoteInput$Builder.setFlag:(IZ)V
         1: .line 273
            aload 0 /* this */
            areturn
        end local 1 // boolean allowFreeFormTextInput
        end local 0 // android.app.RemoteInput$Builder this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    2     0                    this  Landroid/app/RemoteInput$Builder;
            0    2     1  allowFreeFormTextInput  Z
    MethodParameters:
                        Name  Flags
      allowFreeFormTextInput  

  public android.app.RemoteInput$Builder addExtras(android.os.Bundle);
    descriptor: (Landroid/os/Bundle;)Landroid/app/RemoteInput$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.app.RemoteInput$Builder this
        start local 1 // android.os.Bundle extras
         0: .line 285
            aload 1 /* extras */
            ifnull 2
         1: .line 286
            aload 0 /* this */
            getfield android.app.RemoteInput$Builder.mExtras:Landroid/os/Bundle;
            aload 1 /* extras */
            invokevirtual android.os.Bundle.putAll:(Landroid/os/Bundle;)V
         2: .line 288
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // android.os.Bundle extras
        end local 0 // android.app.RemoteInput$Builder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Landroid/app/RemoteInput$Builder;
            0    3     1  extras  Landroid/os/Bundle;
    MethodParameters:
        Name  Flags
      extras  

  public android.os.Bundle getExtras();
    descriptor: ()Landroid/os/Bundle;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.app.RemoteInput$Builder this
         0: .line 298
            aload 0 /* this */
            getfield android.app.RemoteInput$Builder.mExtras:Landroid/os/Bundle;
            areturn
        end local 0 // android.app.RemoteInput$Builder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/app/RemoteInput$Builder;

  private void setFlag(int, boolean);
    descriptor: (IZ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // android.app.RemoteInput$Builder this
        start local 1 // int mask
        start local 2 // boolean value
         0: .line 302
            iload 2 /* value */
            ifeq 3
         1: .line 303
            aload 0 /* this */
            dup
            getfield android.app.RemoteInput$Builder.mFlags:I
            iload 1 /* mask */
            ior
            putfield android.app.RemoteInput$Builder.mFlags:I
         2: .line 304
            goto 4
         3: .line 305
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield android.app.RemoteInput$Builder.mFlags:I
            iload 1 /* mask */
            iconst_m1
            ixor
            iand
            putfield android.app.RemoteInput$Builder.mFlags:I
         4: .line 307
      StackMap locals:
      StackMap stack:
            return
        end local 2 // boolean value
        end local 1 // int mask
        end local 0 // android.app.RemoteInput$Builder this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Landroid/app/RemoteInput$Builder;
            0    5     1   mask  I
            0    5     2  value  Z
    MethodParameters:
       Name  Flags
      mask   
      value  

  public android.app.RemoteInput build();
    descriptor: ()Landroid/app/RemoteInput;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=1, args_size=1
        start local 0 // android.app.RemoteInput$Builder this
         0: .line 315
            new android.app.RemoteInput
            dup
         1: .line 316
            aload 0 /* this */
            getfield android.app.RemoteInput$Builder.mResultKey:Ljava/lang/String;
            aload 0 /* this */
            getfield android.app.RemoteInput$Builder.mLabel:Ljava/lang/CharSequence;
            aload 0 /* this */
            getfield android.app.RemoteInput$Builder.mChoices:[Ljava/lang/CharSequence;
            aload 0 /* this */
            getfield android.app.RemoteInput$Builder.mFlags:I
            aload 0 /* this */
            getfield android.app.RemoteInput$Builder.mExtras:Landroid/os/Bundle;
            aload 0 /* this */
            getfield android.app.RemoteInput$Builder.mAllowedDataTypes:Landroid/util/ArraySet;
         2: .line 315
            invokespecial android.app.RemoteInput.<init>:(Ljava/lang/String;Ljava/lang/CharSequence;[Ljava/lang/CharSequence;ILandroid/os/Bundle;Landroid/util/ArraySet;)V
            areturn
        end local 0 // android.app.RemoteInput$Builder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Landroid/app/RemoteInput$Builder;
}
SourceFile: "RemoteInput.java"
NestHost: android.app.RemoteInput
InnerClasses:
  public final Builder = android.app.RemoteInput$Builder of android.app.RemoteInput