public class javafx.util.Duration implements java.lang.Comparable<javafx.util.Duration>, java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: javafx.util.Duration
  super_class: java.lang.Object
{
  public static final javafx.util.Duration ZERO;
    descriptor: Ljavafx/util/Duration;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final javafx.util.Duration ONE;
    descriptor: Ljavafx/util/Duration;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final javafx.util.Duration INDEFINITE;
    descriptor: Ljavafx/util/Duration;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final javafx.util.Duration UNKNOWN;
    descriptor: Ljavafx/util/Duration;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  private final double millis;
    descriptor: D
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 44
            new javafx.util.Duration
            dup
            dconst_0
            invokespecial javafx.util.Duration.<init>:(D)V
            putstatic javafx.util.Duration.ZERO:Ljavafx/util/Duration;
         1: .line 49
            new javafx.util.Duration
            dup
            dconst_1
            invokespecial javafx.util.Duration.<init>:(D)V
            putstatic javafx.util.Duration.ONE:Ljavafx/util/Duration;
         2: .line 54
            new javafx.util.Duration
            dup
            ldc Infinity
            invokespecial javafx.util.Duration.<init>:(D)V
            putstatic javafx.util.Duration.INDEFINITE:Ljavafx/util/Duration;
         3: .line 59
            new javafx.util.Duration
            dup
            ldc NaN
            invokespecial javafx.util.Duration.<init>:(D)V
            putstatic javafx.util.Duration.UNKNOWN:Ljavafx/util/Duration;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static javafx.util.Duration valueOf(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljavafx/util/Duration;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // java.lang.String time
         0: .line 71
            iconst_m1
            istore 1 /* index */
        start local 1 // int index
         1: .line 72
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 8
         3: .line 73
      StackMap locals: int int
      StackMap stack:
            aload 0 /* time */
            iload 2 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            istore 3 /* c */
        start local 3 // char c
         4: .line 74
            iload 3 /* c */
            invokestatic java.lang.Character.isDigit:(C)Z
            ifne 7
            iload 3 /* c */
            bipush 46
            if_icmpeq 7
            iload 3 /* c */
            bipush 45
            if_icmpeq 7
         5: .line 75
            iload 2 /* i */
            istore 1 /* index */
         6: .line 76
            goto 9
        end local 3 // char c
         7: .line 72
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 2 /* i */
            aload 0 /* time */
            invokevirtual java.lang.String.length:()I
            if_icmplt 3
        end local 2 // int i
         9: .line 80
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            iconst_m1
            if_icmpne 11
        10: .line 82
            new java.lang.IllegalArgumentException
            dup
            ldc "The time parameter must have a suffix of [ms|s|m|h]"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        11: .line 85
      StackMap locals:
      StackMap stack:
            aload 0 /* time */
            iconst_0
            iload 1 /* index */
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            invokestatic java.lang.Double.parseDouble:(Ljava/lang/String;)D
            dstore 2 /* value */
        start local 2 // double value
        12: .line 86
            aload 0 /* time */
            iload 1 /* index */
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            astore 4 /* suffix */
        start local 4 // java.lang.String suffix
        13: .line 87
            ldc "ms"
            aload 4 /* suffix */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 15
        14: .line 88
            dload 2 /* value */
            invokestatic javafx.util.Duration.millis:(D)Ljavafx/util/Duration;
            areturn
        15: .line 89
      StackMap locals: double java.lang.String
      StackMap stack:
            ldc "s"
            aload 4 /* suffix */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 17
        16: .line 90
            dload 2 /* value */
            invokestatic javafx.util.Duration.seconds:(D)Ljavafx/util/Duration;
            areturn
        17: .line 91
      StackMap locals:
      StackMap stack:
            ldc "m"
            aload 4 /* suffix */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 19
        18: .line 92
            dload 2 /* value */
            invokestatic javafx.util.Duration.minutes:(D)Ljavafx/util/Duration;
            areturn
        19: .line 93
      StackMap locals:
      StackMap stack:
            ldc "h"
            aload 4 /* suffix */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 21
        20: .line 94
            dload 2 /* value */
            invokestatic javafx.util.Duration.hours:(D)Ljavafx/util/Duration;
            areturn
        21: .line 97
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "The time parameter must have a suffix of [ms|s|m|h]"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        end local 4 // java.lang.String suffix
        end local 2 // double value
        end local 1 // int index
        end local 0 // java.lang.String time
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   22     0    time  Ljava/lang/String;
            1   22     1   index  I
            2    9     2       i  I
            4    7     3       c  C
           12   22     2   value  D
           13   22     4  suffix  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      time  

  public static javafx.util.Duration millis(double);
    descriptor: (D)Ljavafx/util/Duration;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // double ms
         0: .line 109
            dload 0 /* ms */
            dconst_0
            dcmpl
            ifne 2
         1: .line 110
            getstatic javafx.util.Duration.ZERO:Ljavafx/util/Duration;
            areturn
         2: .line 111
      StackMap locals:
      StackMap stack:
            dload 0 /* ms */
            dconst_1
            dcmpl
            ifne 4
         3: .line 112
            getstatic javafx.util.Duration.ONE:Ljavafx/util/Duration;
            areturn
         4: .line 113
      StackMap locals:
      StackMap stack:
            dload 0 /* ms */
            ldc Infinity
            dcmpl
            ifne 6
         5: .line 114
            getstatic javafx.util.Duration.INDEFINITE:Ljavafx/util/Duration;
            areturn
         6: .line 115
      StackMap locals:
      StackMap stack:
            dload 0 /* ms */
            invokestatic java.lang.Double.isNaN:(D)Z
            ifeq 8
         7: .line 116
            getstatic javafx.util.Duration.UNKNOWN:Ljavafx/util/Duration;
            areturn
         8: .line 118
      StackMap locals:
      StackMap stack:
            new javafx.util.Duration
            dup
            dload 0 /* ms */
            invokespecial javafx.util.Duration.<init>:(D)V
            areturn
        end local 0 // double ms
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0    ms  D
    MethodParameters:
      Name  Flags
      ms    

  public static javafx.util.Duration seconds(double);
    descriptor: (D)Ljavafx/util/Duration;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // double s
         0: .line 130
            dload 0 /* s */
            dconst_0
            dcmpl
            ifne 2
         1: .line 131
            getstatic javafx.util.Duration.ZERO:Ljavafx/util/Duration;
            areturn
         2: .line 132
      StackMap locals:
      StackMap stack:
            dload 0 /* s */
            ldc Infinity
            dcmpl
            ifne 4
         3: .line 133
            getstatic javafx.util.Duration.INDEFINITE:Ljavafx/util/Duration;
            areturn
         4: .line 134
      StackMap locals:
      StackMap stack:
            dload 0 /* s */
            invokestatic java.lang.Double.isNaN:(D)Z
            ifeq 6
         5: .line 135
            getstatic javafx.util.Duration.UNKNOWN:Ljavafx/util/Duration;
            areturn
         6: .line 137
      StackMap locals:
      StackMap stack:
            new javafx.util.Duration
            dup
            dload 0 /* s */
            ldc 1000.0
            dmul
            invokespecial javafx.util.Duration.<init>:(D)V
            areturn
        end local 0 // double s
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0     s  D
    MethodParameters:
      Name  Flags
      s     

  public static javafx.util.Duration minutes(double);
    descriptor: (D)Ljavafx/util/Duration;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // double m
         0: .line 149
            dload 0 /* m */
            dconst_0
            dcmpl
            ifne 2
         1: .line 150
            getstatic javafx.util.Duration.ZERO:Ljavafx/util/Duration;
            areturn
         2: .line 151
      StackMap locals:
      StackMap stack:
            dload 0 /* m */
            ldc Infinity
            dcmpl
            ifne 4
         3: .line 152
            getstatic javafx.util.Duration.INDEFINITE:Ljavafx/util/Duration;
            areturn
         4: .line 153
      StackMap locals:
      StackMap stack:
            dload 0 /* m */
            invokestatic java.lang.Double.isNaN:(D)Z
            ifeq 6
         5: .line 154
            getstatic javafx.util.Duration.UNKNOWN:Ljavafx/util/Duration;
            areturn
         6: .line 156
      StackMap locals:
      StackMap stack:
            new javafx.util.Duration
            dup
            dload 0 /* m */
            ldc 60000.0
            dmul
            invokespecial javafx.util.Duration.<init>:(D)V
            areturn
        end local 0 // double m
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0     m  D
    MethodParameters:
      Name  Flags
      m     

  public static javafx.util.Duration hours(double);
    descriptor: (D)Ljavafx/util/Duration;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // double h
         0: .line 168
            dload 0 /* h */
            dconst_0
            dcmpl
            ifne 2
         1: .line 169
            getstatic javafx.util.Duration.ZERO:Ljavafx/util/Duration;
            areturn
         2: .line 170
      StackMap locals:
      StackMap stack:
            dload 0 /* h */
            ldc Infinity
            dcmpl
            ifne 4
         3: .line 171
            getstatic javafx.util.Duration.INDEFINITE:Ljavafx/util/Duration;
            areturn
         4: .line 172
      StackMap locals:
      StackMap stack:
            dload 0 /* h */
            invokestatic java.lang.Double.isNaN:(D)Z
            ifeq 6
         5: .line 173
            getstatic javafx.util.Duration.UNKNOWN:Ljavafx/util/Duration;
            areturn
         6: .line 175
      StackMap locals:
      StackMap stack:
            new javafx.util.Duration
            dup
            dload 0 /* h */
            ldc 3600000.0
            dmul
            invokespecial javafx.util.Duration.<init>:(D)V
            areturn
        end local 0 // double h
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0     h  D
    MethodParameters:
      Name  Flags
      h     

  public void <init>(double);
    descriptor: (D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // javafx.util.Duration this
        start local 1 // double millis
         0: .line 188
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 189
            aload 0 /* this */
            dload 1 /* millis */
            putfield javafx.util.Duration.millis:D
         2: .line 190
            return
        end local 1 // double millis
        end local 0 // javafx.util.Duration this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Ljavafx/util/Duration;
            0    3     1  millis  D
    RuntimeVisibleParameterAnnotations: 
      0:
        javafx.beans.NamedArg(value = "millis")
    MethodParameters:
        Name  Flags
      millis  

  public double toMillis();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javafx.util.Duration this
         0: .line 198
            aload 0 /* this */
            getfield javafx.util.Duration.millis:D
            dreturn
        end local 0 // javafx.util.Duration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/util/Duration;

  public double toSeconds();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // javafx.util.Duration this
         0: .line 207
            aload 0 /* this */
            getfield javafx.util.Duration.millis:D
            ldc 1000.0
            ddiv
            dreturn
        end local 0 // javafx.util.Duration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/util/Duration;

  public double toMinutes();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // javafx.util.Duration this
         0: .line 216
            aload 0 /* this */
            getfield javafx.util.Duration.millis:D
            ldc 60000.0
            ddiv
            dreturn
        end local 0 // javafx.util.Duration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/util/Duration;

  public double toHours();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // javafx.util.Duration this
         0: .line 225
            aload 0 /* this */
            getfield javafx.util.Duration.millis:D
            ldc 3600000.0
            ddiv
            dreturn
        end local 0 // javafx.util.Duration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/util/Duration;

  public javafx.util.Duration add(javafx.util.Duration);
    descriptor: (Ljavafx/util/Duration;)Ljavafx/util/Duration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // javafx.util.Duration this
        start local 1 // javafx.util.Duration other
         0: .line 241
            aload 0 /* this */
            getfield javafx.util.Duration.millis:D
            aload 1 /* other */
            getfield javafx.util.Duration.millis:D
            dadd
            invokestatic javafx.util.Duration.millis:(D)Ljavafx/util/Duration;
            areturn
        end local 1 // javafx.util.Duration other
        end local 0 // javafx.util.Duration this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Ljavafx/util/Duration;
            0    1     1  other  Ljavafx/util/Duration;
    MethodParameters:
       Name  Flags
      other  

  public javafx.util.Duration subtract(javafx.util.Duration);
    descriptor: (Ljavafx/util/Duration;)Ljavafx/util/Duration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // javafx.util.Duration this
        start local 1 // javafx.util.Duration other
         0: .line 255
            aload 0 /* this */
            getfield javafx.util.Duration.millis:D
            aload 1 /* other */
            getfield javafx.util.Duration.millis:D
            dsub
            invokestatic javafx.util.Duration.millis:(D)Ljavafx/util/Duration;
            areturn
        end local 1 // javafx.util.Duration other
        end local 0 // javafx.util.Duration this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Ljavafx/util/Duration;
            0    1     1  other  Ljavafx/util/Duration;
    MethodParameters:
       Name  Flags
      other  

  public javafx.util.Duration multiply(javafx.util.Duration);
    descriptor: (Ljavafx/util/Duration;)Ljavafx/util/Duration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // javafx.util.Duration this
        start local 1 // javafx.util.Duration other
         0: .line 272
            aload 0 /* this */
            getfield javafx.util.Duration.millis:D
            aload 1 /* other */
            getfield javafx.util.Duration.millis:D
            dmul
            invokestatic javafx.util.Duration.millis:(D)Ljavafx/util/Duration;
            areturn
        end local 1 // javafx.util.Duration other
        end local 0 // javafx.util.Duration this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Ljavafx/util/Duration;
            0    1     1  other  Ljavafx/util/Duration;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
       Name  Flags
      other  

  public javafx.util.Duration multiply(double);
    descriptor: (D)Ljavafx/util/Duration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // javafx.util.Duration this
        start local 1 // double n
         0: .line 286
            aload 0 /* this */
            getfield javafx.util.Duration.millis:D
            dload 1 /* n */
            dmul
            invokestatic javafx.util.Duration.millis:(D)Ljavafx/util/Duration;
            areturn
        end local 1 // double n
        end local 0 // javafx.util.Duration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/util/Duration;
            0    1     1     n  D
    MethodParameters:
      Name  Flags
      n     

  public javafx.util.Duration divide(double);
    descriptor: (D)Ljavafx/util/Duration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // javafx.util.Duration this
        start local 1 // double n
         0: .line 300
            aload 0 /* this */
            getfield javafx.util.Duration.millis:D
            dload 1 /* n */
            ddiv
            invokestatic javafx.util.Duration.millis:(D)Ljavafx/util/Duration;
            areturn
        end local 1 // double n
        end local 0 // javafx.util.Duration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/util/Duration;
            0    1     1     n  D
    MethodParameters:
      Name  Flags
      n     

  public javafx.util.Duration divide(javafx.util.Duration);
    descriptor: (Ljavafx/util/Duration;)Ljavafx/util/Duration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // javafx.util.Duration this
        start local 1 // javafx.util.Duration other
         0: .line 318
            aload 0 /* this */
            getfield javafx.util.Duration.millis:D
            aload 1 /* other */
            getfield javafx.util.Duration.millis:D
            ddiv
            invokestatic javafx.util.Duration.millis:(D)Ljavafx/util/Duration;
            areturn
        end local 1 // javafx.util.Duration other
        end local 0 // javafx.util.Duration this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Ljavafx/util/Duration;
            0    1     1  other  Ljavafx/util/Duration;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
       Name  Flags
      other  

  public javafx.util.Duration negate();
    descriptor: ()Ljavafx/util/Duration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javafx.util.Duration this
         0: .line 332
            aload 0 /* this */
            getfield javafx.util.Duration.millis:D
            dneg
            invokestatic javafx.util.Duration.millis:(D)Ljavafx/util/Duration;
            areturn
        end local 0 // javafx.util.Duration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/util/Duration;

  public boolean isIndefinite();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // javafx.util.Duration this
         0: .line 341
            aload 0 /* this */
            getfield javafx.util.Duration.millis:D
            ldc Infinity
            dcmpl
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // javafx.util.Duration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavafx/util/Duration;

  public boolean isUnknown();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javafx.util.Duration this
         0: .line 350
            aload 0 /* this */
            getfield javafx.util.Duration.millis:D
            invokestatic java.lang.Double.isNaN:(D)Z
            ireturn
        end local 0 // javafx.util.Duration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/util/Duration;

  public boolean lessThan(javafx.util.Duration);
    descriptor: (Ljavafx/util/Duration;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // javafx.util.Duration this
        start local 1 // javafx.util.Duration other
         0: .line 361
            aload 0 /* this */
            getfield javafx.util.Duration.millis:D
            aload 1 /* other */
            getfield javafx.util.Duration.millis:D
            dcmpg
            ifge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // javafx.util.Duration other
        end local 0 // javafx.util.Duration this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Ljavafx/util/Duration;
            0    2     1  other  Ljavafx/util/Duration;
    MethodParameters:
       Name  Flags
      other  

  public boolean lessThanOrEqualTo(javafx.util.Duration);
    descriptor: (Ljavafx/util/Duration;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // javafx.util.Duration this
        start local 1 // javafx.util.Duration other
         0: .line 372
            aload 0 /* this */
            getfield javafx.util.Duration.millis:D
            aload 1 /* other */
            getfield javafx.util.Duration.millis:D
            dcmpg
            ifgt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // javafx.util.Duration other
        end local 0 // javafx.util.Duration this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Ljavafx/util/Duration;
            0    2     1  other  Ljavafx/util/Duration;
    MethodParameters:
       Name  Flags
      other  

  public boolean greaterThan(javafx.util.Duration);
    descriptor: (Ljavafx/util/Duration;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // javafx.util.Duration this
        start local 1 // javafx.util.Duration other
         0: .line 383
            aload 0 /* this */
            getfield javafx.util.Duration.millis:D
            aload 1 /* other */
            getfield javafx.util.Duration.millis:D
            dcmpl
            ifle 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // javafx.util.Duration other
        end local 0 // javafx.util.Duration this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Ljavafx/util/Duration;
            0    2     1  other  Ljavafx/util/Duration;
    MethodParameters:
       Name  Flags
      other  

  public boolean greaterThanOrEqualTo(javafx.util.Duration);
    descriptor: (Ljavafx/util/Duration;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // javafx.util.Duration this
        start local 1 // javafx.util.Duration other
         0: .line 394
            aload 0 /* this */
            getfield javafx.util.Duration.millis:D
            aload 1 /* other */
            getfield javafx.util.Duration.millis:D
            dcmpl
            iflt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // javafx.util.Duration other
        end local 0 // javafx.util.Duration this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Ljavafx/util/Duration;
            0    2     1  other  Ljavafx/util/Duration;
    MethodParameters:
       Name  Flags
      other  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // javafx.util.Duration this
         0: .line 402
            aload 0 /* this */
            invokevirtual javafx.util.Duration.isIndefinite:()Z
            ifeq 1
            ldc "INDEFINITE"
            goto 3
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            invokevirtual javafx.util.Duration.isUnknown:()Z
            ifeq 2
            ldc "UNKNOWN"
            goto 3
      StackMap locals:
      StackMap stack:
         2: new java.lang.StringBuilder
            dup
            aload 0 /* this */
            getfield javafx.util.Duration.millis:D
            invokestatic java.lang.String.valueOf:(D)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc " ms"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
      StackMap locals:
      StackMap stack: java.lang.String
         3: areturn
        end local 0 // javafx.util.Duration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljavafx/util/Duration;

  public int compareTo(javafx.util.Duration);
    descriptor: (Ljavafx/util/Duration;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // javafx.util.Duration this
        start local 1 // javafx.util.Duration d
         0: .line 415
            aload 0 /* this */
            getfield javafx.util.Duration.millis:D
            aload 1 /* d */
            getfield javafx.util.Duration.millis:D
            invokestatic java.lang.Double.compare:(DD)I
            ireturn
        end local 1 // javafx.util.Duration d
        end local 0 // javafx.util.Duration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/util/Duration;
            0    1     1     d  Ljavafx/util/Duration;
    MethodParameters:
      Name  Flags
      d     

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // javafx.util.Duration this
        start local 1 // java.lang.Object obj
         0: .line 425
            aload 1 /* obj */
            aload 0 /* this */
            if_acmpeq 2
            aload 1 /* obj */
            instanceof javafx.util.Duration
            ifeq 1
            aload 0 /* this */
            getfield javafx.util.Duration.millis:D
            aload 1 /* obj */
            checkcast javafx.util.Duration
            getfield javafx.util.Duration.millis:D
            dcmpl
            ifeq 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_1
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // javafx.util.Duration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/util/Duration;
            0    3     1   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // javafx.util.Duration this
         0: .line 434
            aload 0 /* this */
            getfield javafx.util.Duration.millis:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            lstore 1 /* bits */
        start local 1 // long bits
         1: .line 435
            lload 1 /* bits */
            lload 1 /* bits */
            bipush 32
            lushr
            lxor
            l2i
            ireturn
        end local 1 // long bits
        end local 0 // javafx.util.Duration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavafx/util/Duration;
            1    2     1  bits  J

  public int compareTo(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast javafx.util.Duration
            invokevirtual javafx.util.Duration.compareTo:(Ljavafx/util/Duration;)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Ljava/lang/Comparable<Ljavafx/util/Duration;>;Ljava/io/Serializable;
SourceFile: "Duration.java"