public final class android.hardware.location.GeofenceHardwareRequest
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: android.hardware.location.GeofenceHardwareRequest
  super_class: java.lang.Object
{
  static final int GEOFENCE_TYPE_CIRCLE;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 0

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

  private double mLatitude;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private double mLongitude;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private double mRadius;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

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

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

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

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

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.hardware.location.GeofenceHardwareRequest this
         0: .line 29
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 35
            aload 0 /* this */
            iconst_4
            putfield android.hardware.location.GeofenceHardwareRequest.mLastTransition:I
         2: .line 36
            aload 0 /* this */
            sipush 30000
            putfield android.hardware.location.GeofenceHardwareRequest.mUnknownTimer:I
         3: .line 37
            aload 0 /* this */
            bipush 7
            putfield android.hardware.location.GeofenceHardwareRequest.mMonitorTransitions:I
         4: .line 39
            aload 0 /* this */
            sipush 5000
            putfield android.hardware.location.GeofenceHardwareRequest.mNotificationResponsiveness:I
         5: .line 40
            aload 0 /* this */
            iconst_1
            putfield android.hardware.location.GeofenceHardwareRequest.mSourceTechnologies:I
         6: .line 29
            return
        end local 0 // android.hardware.location.GeofenceHardwareRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Landroid/hardware/location/GeofenceHardwareRequest;

  private void setCircularGeofence(double, double, double);
    descriptor: (DDD)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=7, args_size=4
        start local 0 // android.hardware.location.GeofenceHardwareRequest this
        start local 1 // double latitude
        start local 3 // double longitude
        start local 5 // double radius
         0: .line 43
            aload 0 /* this */
            dload 1 /* latitude */
            putfield android.hardware.location.GeofenceHardwareRequest.mLatitude:D
         1: .line 44
            aload 0 /* this */
            dload 3 /* longitude */
            putfield android.hardware.location.GeofenceHardwareRequest.mLongitude:D
         2: .line 45
            aload 0 /* this */
            dload 5 /* radius */
            putfield android.hardware.location.GeofenceHardwareRequest.mRadius:D
         3: .line 46
            aload 0 /* this */
            iconst_0
            putfield android.hardware.location.GeofenceHardwareRequest.mType:I
         4: .line 47
            return
        end local 5 // double radius
        end local 3 // double longitude
        end local 1 // double latitude
        end local 0 // android.hardware.location.GeofenceHardwareRequest this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Landroid/hardware/location/GeofenceHardwareRequest;
            0    5     1   latitude  D
            0    5     3  longitude  D
            0    5     5     radius  D
    MethodParameters:
           Name  Flags
      latitude   
      longitude  
      radius     

  public static android.hardware.location.GeofenceHardwareRequest createCircularGeofence(double, double, double);
    descriptor: (DDD)Landroid/hardware/location/GeofenceHardwareRequest;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=7, locals=7, args_size=3
        start local 0 // double latitude
        start local 2 // double longitude
        start local 4 // double radius
         0: .line 58
            new android.hardware.location.GeofenceHardwareRequest
            dup
            invokespecial android.hardware.location.GeofenceHardwareRequest.<init>:()V
            astore 6 /* geofenceRequest */
        start local 6 // android.hardware.location.GeofenceHardwareRequest geofenceRequest
         1: .line 59
            aload 6 /* geofenceRequest */
            dload 0 /* latitude */
            dload 2 /* longitude */
            dload 4 /* radius */
            invokevirtual android.hardware.location.GeofenceHardwareRequest.setCircularGeofence:(DDD)V
         2: .line 60
            aload 6 /* geofenceRequest */
            areturn
        end local 6 // android.hardware.location.GeofenceHardwareRequest geofenceRequest
        end local 4 // double radius
        end local 2 // double longitude
        end local 0 // double latitude
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    3     0         latitude  D
            0    3     2        longitude  D
            0    3     4           radius  D
            1    3     6  geofenceRequest  Landroid/hardware/location/GeofenceHardwareRequest;
    MethodParameters:
           Name  Flags
      latitude   
      longitude  
      radius     

  public void setLastTransition(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.hardware.location.GeofenceHardwareRequest this
        start local 1 // int lastTransition
         0: .line 71
            aload 0 /* this */
            iload 1 /* lastTransition */
            putfield android.hardware.location.GeofenceHardwareRequest.mLastTransition:I
         1: .line 72
            return
        end local 1 // int lastTransition
        end local 0 // android.hardware.location.GeofenceHardwareRequest this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Landroid/hardware/location/GeofenceHardwareRequest;
            0    2     1  lastTransition  I
    MethodParameters:
                Name  Flags
      lastTransition  

  public void setUnknownTimer(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.hardware.location.GeofenceHardwareRequest this
        start local 1 // int unknownTimer
         0: .line 82
            aload 0 /* this */
            iload 1 /* unknownTimer */
            putfield android.hardware.location.GeofenceHardwareRequest.mUnknownTimer:I
         1: .line 83
            return
        end local 1 // int unknownTimer
        end local 0 // android.hardware.location.GeofenceHardwareRequest this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Landroid/hardware/location/GeofenceHardwareRequest;
            0    2     1  unknownTimer  I
    MethodParameters:
              Name  Flags
      unknownTimer  

  public void setMonitorTransitions(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.hardware.location.GeofenceHardwareRequest this
        start local 1 // int monitorTransitions
         0: .line 92
            aload 0 /* this */
            iload 1 /* monitorTransitions */
            putfield android.hardware.location.GeofenceHardwareRequest.mMonitorTransitions:I
         1: .line 93
            return
        end local 1 // int monitorTransitions
        end local 0 // android.hardware.location.GeofenceHardwareRequest this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Landroid/hardware/location/GeofenceHardwareRequest;
            0    2     1  monitorTransitions  I
    MethodParameters:
                    Name  Flags
      monitorTransitions  

  public void setNotificationResponsiveness(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.hardware.location.GeofenceHardwareRequest this
        start local 1 // int notificationResponsiveness
         0: .line 106
            aload 0 /* this */
            iload 1 /* notificationResponsiveness */
            putfield android.hardware.location.GeofenceHardwareRequest.mNotificationResponsiveness:I
         1: .line 107
            return
        end local 1 // int notificationResponsiveness
        end local 0 // android.hardware.location.GeofenceHardwareRequest this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0    2     0                        this  Landroid/hardware/location/GeofenceHardwareRequest;
            0    2     1  notificationResponsiveness  I
    MethodParameters:
                            Name  Flags
      notificationResponsiveness  

  public void setSourceTechnologies(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // android.hardware.location.GeofenceHardwareRequest this
        start local 1 // int sourceTechnologies
         0: .line 117
            bipush 31
            istore 2 /* sourceTechnologiesAll */
        start local 2 // int sourceTechnologiesAll
         1: .line 123
            iload 1 /* sourceTechnologies */
            iload 2 /* sourceTechnologiesAll */
            iand
            istore 3 /* sanitizedSourceTechnologies */
        start local 3 // int sanitizedSourceTechnologies
         2: .line 124
            iload 3 /* sanitizedSourceTechnologies */
            ifne 4
         3: .line 125
            new java.lang.IllegalArgumentException
            dup
            ldc "At least one valid source technology must be set."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 128
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* sanitizedSourceTechnologies */
            putfield android.hardware.location.GeofenceHardwareRequest.mSourceTechnologies:I
         5: .line 129
            return
        end local 3 // int sanitizedSourceTechnologies
        end local 2 // int sourceTechnologiesAll
        end local 1 // int sourceTechnologies
        end local 0 // android.hardware.location.GeofenceHardwareRequest this
      LocalVariableTable:
        Start  End  Slot                         Name  Signature
            0    6     0                         this  Landroid/hardware/location/GeofenceHardwareRequest;
            0    6     1           sourceTechnologies  I
            1    6     2        sourceTechnologiesAll  I
            2    6     3  sanitizedSourceTechnologies  I
    MethodParameters:
                    Name  Flags
      sourceTechnologies  

  public double getLatitude();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.hardware.location.GeofenceHardwareRequest this
         0: .line 135
            aload 0 /* this */
            getfield android.hardware.location.GeofenceHardwareRequest.mLatitude:D
            dreturn
        end local 0 // android.hardware.location.GeofenceHardwareRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/hardware/location/GeofenceHardwareRequest;

  public double getLongitude();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.hardware.location.GeofenceHardwareRequest this
         0: .line 142
            aload 0 /* this */
            getfield android.hardware.location.GeofenceHardwareRequest.mLongitude:D
            dreturn
        end local 0 // android.hardware.location.GeofenceHardwareRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/hardware/location/GeofenceHardwareRequest;

  public double getRadius();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.hardware.location.GeofenceHardwareRequest this
         0: .line 149
            aload 0 /* this */
            getfield android.hardware.location.GeofenceHardwareRequest.mRadius:D
            dreturn
        end local 0 // android.hardware.location.GeofenceHardwareRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/hardware/location/GeofenceHardwareRequest;

  public int getMonitorTransitions();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.hardware.location.GeofenceHardwareRequest this
         0: .line 156
            aload 0 /* this */
            getfield android.hardware.location.GeofenceHardwareRequest.mMonitorTransitions:I
            ireturn
        end local 0 // android.hardware.location.GeofenceHardwareRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/hardware/location/GeofenceHardwareRequest;

  public int getUnknownTimer();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.hardware.location.GeofenceHardwareRequest this
         0: .line 163
            aload 0 /* this */
            getfield android.hardware.location.GeofenceHardwareRequest.mUnknownTimer:I
            ireturn
        end local 0 // android.hardware.location.GeofenceHardwareRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/hardware/location/GeofenceHardwareRequest;

  public int getNotificationResponsiveness();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.hardware.location.GeofenceHardwareRequest this
         0: .line 170
            aload 0 /* this */
            getfield android.hardware.location.GeofenceHardwareRequest.mNotificationResponsiveness:I
            ireturn
        end local 0 // android.hardware.location.GeofenceHardwareRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/hardware/location/GeofenceHardwareRequest;

  public int getLastTransition();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.hardware.location.GeofenceHardwareRequest this
         0: .line 177
            aload 0 /* this */
            getfield android.hardware.location.GeofenceHardwareRequest.mLastTransition:I
            ireturn
        end local 0 // android.hardware.location.GeofenceHardwareRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/hardware/location/GeofenceHardwareRequest;

  public int getSourceTechnologies();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.hardware.location.GeofenceHardwareRequest this
         0: .line 184
            aload 0 /* this */
            getfield android.hardware.location.GeofenceHardwareRequest.mSourceTechnologies:I
            ireturn
        end local 0 // android.hardware.location.GeofenceHardwareRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/hardware/location/GeofenceHardwareRequest;

  int getType();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.hardware.location.GeofenceHardwareRequest this
         0: .line 188
            aload 0 /* this */
            getfield android.hardware.location.GeofenceHardwareRequest.mType:I
            ireturn
        end local 0 // android.hardware.location.GeofenceHardwareRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/hardware/location/GeofenceHardwareRequest;
}
SourceFile: "GeofenceHardwareRequest.java"
    RuntimeVisibleAnnotations: 
      android.annotation.SystemApi()