public class javafx.geometry.Rectangle2D
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: javafx.geometry.Rectangle2D
  super_class: java.lang.Object
{
  public static final javafx.geometry.Rectangle2D EMPTY;
    descriptor: Ljavafx/geometry/Rectangle2D;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

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

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

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

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

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

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=10, locals=0, args_size=0
         0: .line 40
            new javafx.geometry.Rectangle2D
            dup
            dconst_0
            dconst_0
            dconst_0
            dconst_0
            invokespecial javafx.geometry.Rectangle2D.<init>:(DDDD)V
            putstatic javafx.geometry.Rectangle2D.EMPTY:Ljavafx/geometry/Rectangle2D;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public double getMinX();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javafx.geometry.Rectangle2D this
         0: .line 48
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.minX:D
            dreturn
        end local 0 // javafx.geometry.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/geometry/Rectangle2D;

  public double getMinY();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javafx.geometry.Rectangle2D this
         0: .line 57
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.minY:D
            dreturn
        end local 0 // javafx.geometry.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/geometry/Rectangle2D;

  public double getWidth();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javafx.geometry.Rectangle2D this
         0: .line 66
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.width:D
            dreturn
        end local 0 // javafx.geometry.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/geometry/Rectangle2D;

  public double getHeight();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javafx.geometry.Rectangle2D this
         0: .line 75
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.height:D
            dreturn
        end local 0 // javafx.geometry.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/geometry/Rectangle2D;

  public double getMaxX();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javafx.geometry.Rectangle2D this
         0: .line 84
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.maxX:D
            dreturn
        end local 0 // javafx.geometry.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/geometry/Rectangle2D;

  public double getMaxY();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javafx.geometry.Rectangle2D this
         0: .line 93
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.maxY:D
            dreturn
        end local 0 // javafx.geometry.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/geometry/Rectangle2D;

  public void <init>(double, double, double, double);
    descriptor: (DDDD)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=9, args_size=5
        start local 0 // javafx.geometry.Rectangle2D this
        start local 1 // double minX
        start local 3 // double minY
        start local 5 // double width
        start local 7 // double height
         0: .line 108
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 99
            aload 0 /* this */
            iconst_0
            putfield javafx.geometry.Rectangle2D.hash:I
         2: .line 109
            dload 5 /* width */
            dconst_0
            dcmpg
            iflt 3
            dload 7 /* height */
            dconst_0
            dcmpg
            ifge 4
         3: .line 110
      StackMap locals: javafx.geometry.Rectangle2D double double double double
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Both width and height must be >= 0"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 113
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* minX */
            putfield javafx.geometry.Rectangle2D.minX:D
         5: .line 114
            aload 0 /* this */
            dload 3 /* minY */
            putfield javafx.geometry.Rectangle2D.minY:D
         6: .line 115
            aload 0 /* this */
            dload 5 /* width */
            putfield javafx.geometry.Rectangle2D.width:D
         7: .line 116
            aload 0 /* this */
            dload 7 /* height */
            putfield javafx.geometry.Rectangle2D.height:D
         8: .line 117
            aload 0 /* this */
            dload 1 /* minX */
            dload 5 /* width */
            dadd
            putfield javafx.geometry.Rectangle2D.maxX:D
         9: .line 118
            aload 0 /* this */
            dload 3 /* minY */
            dload 7 /* height */
            dadd
            putfield javafx.geometry.Rectangle2D.maxY:D
        10: .line 119
            return
        end local 7 // double height
        end local 5 // double width
        end local 3 // double minY
        end local 1 // double minX
        end local 0 // javafx.geometry.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Ljavafx/geometry/Rectangle2D;
            0   11     1    minX  D
            0   11     3    minY  D
            0   11     5   width  D
            0   11     7  height  D
    RuntimeVisibleParameterAnnotations: 
      0:
        javafx.beans.NamedArg(value = "minX")
      1:
        javafx.beans.NamedArg(value = "minY")
      2:
        javafx.beans.NamedArg(value = "width")
      3:
        javafx.beans.NamedArg(value = "height")
    MethodParameters:
        Name  Flags
      minX    
      minY    
      width   
      height  

  public boolean contains(javafx.geometry.Point2D);
    descriptor: (Ljavafx/geometry/Point2D;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // javafx.geometry.Rectangle2D this
        start local 1 // javafx.geometry.Point2D p
         0: .line 129
            aload 1 /* p */
            ifnonnull 1
            iconst_0
            ireturn
         1: .line 130
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* p */
            invokevirtual javafx.geometry.Point2D.getX:()D
            aload 1 /* p */
            invokevirtual javafx.geometry.Point2D.getY:()D
            invokevirtual javafx.geometry.Rectangle2D.contains:(DD)Z
            ireturn
        end local 1 // javafx.geometry.Point2D p
        end local 0 // javafx.geometry.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavafx/geometry/Rectangle2D;
            0    2     1     p  Ljavafx/geometry/Point2D;
    MethodParameters:
      Name  Flags
      p     

  public boolean contains(double, double);
    descriptor: (DD)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // javafx.geometry.Rectangle2D this
        start local 1 // double x
        start local 3 // double y
         0: .line 143
            dload 1 /* x */
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.minX:D
            dcmpl
            iflt 1
            dload 1 /* x */
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.maxX:D
            dcmpg
            ifgt 1
            dload 3 /* y */
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.minY:D
            dcmpl
            iflt 1
            dload 3 /* y */
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.maxY:D
            dcmpg
            ifgt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 3 // double y
        end local 1 // double x
        end local 0 // javafx.geometry.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavafx/geometry/Rectangle2D;
            0    2     1     x  D
            0    2     3     y  D
    MethodParameters:
      Name  Flags
      x     
      y     

  public boolean contains(javafx.geometry.Rectangle2D);
    descriptor: (Ljavafx/geometry/Rectangle2D;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // javafx.geometry.Rectangle2D this
        start local 1 // javafx.geometry.Rectangle2D r
         0: .line 155
            aload 1 /* r */
            ifnonnull 1
            iconst_0
            ireturn
         1: .line 156
      StackMap locals:
      StackMap stack:
            aload 1 /* r */
            getfield javafx.geometry.Rectangle2D.minX:D
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.minX:D
            dcmpl
            iflt 2
            aload 1 /* r */
            getfield javafx.geometry.Rectangle2D.minY:D
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.minY:D
            dcmpl
            iflt 2
            aload 1 /* r */
            getfield javafx.geometry.Rectangle2D.maxX:D
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.maxX:D
            dcmpg
            ifgt 2
            aload 1 /* r */
            getfield javafx.geometry.Rectangle2D.maxY:D
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.maxY:D
            dcmpg
            ifgt 2
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
        end local 1 // javafx.geometry.Rectangle2D r
        end local 0 // javafx.geometry.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/geometry/Rectangle2D;
            0    3     1     r  Ljavafx/geometry/Rectangle2D;
    MethodParameters:
      Name  Flags
      r     

  public boolean contains(double, double, double, double);
    descriptor: (DDDD)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=9, args_size=5
        start local 0 // javafx.geometry.Rectangle2D this
        start local 1 // double x
        start local 3 // double y
        start local 5 // double w
        start local 7 // double h
         0: .line 173
            dload 1 /* x */
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.minX:D
            dcmpl
            iflt 1
            dload 3 /* y */
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.minY:D
            dcmpl
            iflt 1
            dload 5 /* w */
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.maxX:D
            dload 1 /* x */
            dsub
            dcmpg
            ifgt 1
            dload 7 /* h */
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.maxY:D
            dload 3 /* y */
            dsub
            dcmpg
            ifgt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 7 // double h
        end local 5 // double w
        end local 3 // double y
        end local 1 // double x
        end local 0 // javafx.geometry.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavafx/geometry/Rectangle2D;
            0    2     1     x  D
            0    2     3     y  D
            0    2     5     w  D
            0    2     7     h  D
    MethodParameters:
      Name  Flags
      x     
      y     
      w     
      h     

  public boolean intersects(javafx.geometry.Rectangle2D);
    descriptor: (Ljavafx/geometry/Rectangle2D;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // javafx.geometry.Rectangle2D this
        start local 1 // javafx.geometry.Rectangle2D r
         0: .line 185
            aload 1 /* r */
            ifnonnull 1
            iconst_0
            ireturn
         1: .line 186
      StackMap locals:
      StackMap stack:
            aload 1 /* r */
            getfield javafx.geometry.Rectangle2D.maxX:D
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.minX:D
            dcmpl
            ifle 2
            aload 1 /* r */
            getfield javafx.geometry.Rectangle2D.maxY:D
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.minY:D
            dcmpl
            ifle 2
            aload 1 /* r */
            getfield javafx.geometry.Rectangle2D.minX:D
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.maxX:D
            dcmpg
            ifge 2
            aload 1 /* r */
            getfield javafx.geometry.Rectangle2D.minY:D
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.maxY:D
            dcmpg
            ifge 2
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
        end local 1 // javafx.geometry.Rectangle2D r
        end local 0 // javafx.geometry.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/geometry/Rectangle2D;
            0    3     1     r  Ljavafx/geometry/Rectangle2D;
    MethodParameters:
      Name  Flags
      r     

  public boolean intersects(double, double, double, double);
    descriptor: (DDDD)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=5
        start local 0 // javafx.geometry.Rectangle2D this
        start local 1 // double x
        start local 3 // double y
        start local 5 // double w
        start local 7 // double h
         0: .line 203
            dload 1 /* x */
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.maxX:D
            dcmpg
            ifge 1
            dload 3 /* y */
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.maxY:D
            dcmpg
            ifge 1
            dload 1 /* x */
            dload 5 /* w */
            dadd
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.minX:D
            dcmpl
            ifle 1
            dload 3 /* y */
            dload 7 /* h */
            dadd
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.minY:D
            dcmpl
            ifle 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 7 // double h
        end local 5 // double w
        end local 3 // double y
        end local 1 // double x
        end local 0 // javafx.geometry.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavafx/geometry/Rectangle2D;
            0    2     1     x  D
            0    2     3     y  D
            0    2     5     w  D
            0    2     7     h  D
    MethodParameters:
      Name  Flags
      x     
      y     
      w     
      h     

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // javafx.geometry.Rectangle2D this
        start local 1 // java.lang.Object obj
         0: .line 212
            aload 1 /* obj */
            aload 0 /* this */
            if_acmpne 1
            iconst_1
            ireturn
         1: .line 213
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof javafx.geometry.Rectangle2D
            ifeq 9
         2: .line 214
            aload 1 /* obj */
            checkcast javafx.geometry.Rectangle2D
            astore 2 /* other */
        start local 2 // javafx.geometry.Rectangle2D other
         3: .line 215
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.minX:D
            aload 2 /* other */
            getfield javafx.geometry.Rectangle2D.minX:D
            dcmpl
            ifne 8
         4: .line 216
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.minY:D
            aload 2 /* other */
            getfield javafx.geometry.Rectangle2D.minY:D
            dcmpl
            ifne 8
         5: .line 217
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.width:D
            aload 2 /* other */
            getfield javafx.geometry.Rectangle2D.width:D
            dcmpl
            ifne 8
         6: .line 218
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.height:D
            aload 2 /* other */
            getfield javafx.geometry.Rectangle2D.height:D
            dcmpl
            ifne 8
         7: .line 215
            iconst_1
            ireturn
      StackMap locals: javafx.geometry.Rectangle2D
      StackMap stack:
         8: iconst_0
            ireturn
        end local 2 // javafx.geometry.Rectangle2D other
         9: .line 219
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // javafx.geometry.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Ljavafx/geometry/Rectangle2D;
            0   10     1    obj  Ljava/lang/Object;
            3    9     2  other  Ljavafx/geometry/Rectangle2D;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // javafx.geometry.Rectangle2D this
         0: .line 227
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.hash:I
            ifne 7
         1: .line 228
            ldc 7
            lstore 1 /* bits */
        start local 1 // long bits
         2: .line 229
            ldc 31
            lload 1 /* bits */
            lmul
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.minX:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            ladd
            lstore 1 /* bits */
         3: .line 230
            ldc 31
            lload 1 /* bits */
            lmul
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.minY:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            ladd
            lstore 1 /* bits */
         4: .line 231
            ldc 31
            lload 1 /* bits */
            lmul
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.width:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            ladd
            lstore 1 /* bits */
         5: .line 232
            ldc 31
            lload 1 /* bits */
            lmul
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.height:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            ladd
            lstore 1 /* bits */
         6: .line 233
            aload 0 /* this */
            lload 1 /* bits */
            lload 1 /* bits */
            bipush 32
            lshr
            lxor
            l2i
            putfield javafx.geometry.Rectangle2D.hash:I
        end local 1 // long bits
         7: .line 235
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.hash:I
            ireturn
        end local 0 // javafx.geometry.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Ljavafx/geometry/Rectangle2D;
            2    7     1  bits  J

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // javafx.geometry.Rectangle2D this
         0: .line 246
            new java.lang.StringBuilder
            dup
            ldc "Rectangle2D [minX = "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.minX:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
         1: .line 247
            ldc ", minY="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.minY:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
         2: .line 248
            ldc ", maxX="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.maxX:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
         3: .line 249
            ldc ", maxY="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.maxY:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
         4: .line 250
            ldc ", width="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.width:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
         5: .line 251
            ldc ", height="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield javafx.geometry.Rectangle2D.height:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
         6: .line 252
            ldc "]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         7: .line 246
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // javafx.geometry.Rectangle2D this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Ljavafx/geometry/Rectangle2D;
}
SourceFile: "Rectangle2D.java"