public class org.h2.value.ValueDouble extends org.h2.value.Value
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.h2.value.ValueDouble
  super_class: org.h2.value.Value
{
  public static final int PRECISION;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 17

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

  public static final long ZERO_BITS;
    descriptor: J
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final org.h2.value.ValueDouble ZERO;
    descriptor: Lorg/h2/value/ValueDouble;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final org.h2.value.ValueDouble ONE;
    descriptor: Lorg/h2/value/ValueDouble;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  private static final org.h2.value.ValueDouble NAN;
    descriptor: Lorg/h2/value/ValueDouble;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final double value;
    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 38
            new org.h2.value.ValueDouble
            dup
            dconst_0
            invokespecial org.h2.value.ValueDouble.<init>:(D)V
            putstatic org.h2.value.ValueDouble.ZERO:Lorg/h2/value/ValueDouble;
         1: .line 43
            new org.h2.value.ValueDouble
            dup
            dconst_1
            invokespecial org.h2.value.ValueDouble.<init>:(D)V
            putstatic org.h2.value.ValueDouble.ONE:Lorg/h2/value/ValueDouble;
         2: .line 45
            new org.h2.value.ValueDouble
            dup
            ldc NaN
            invokespecial org.h2.value.ValueDouble.<init>:(D)V
            putstatic org.h2.value.ValueDouble.NAN:Lorg/h2/value/ValueDouble;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>(double);
    descriptor: (D)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.h2.value.ValueDouble this
        start local 1 // double value
         0: .line 49
            aload 0 /* this */
            invokespecial org.h2.value.Value.<init>:()V
         1: .line 50
            aload 0 /* this */
            dload 1 /* value */
            putfield org.h2.value.ValueDouble.value:D
         2: .line 51
            return
        end local 1 // double value
        end local 0 // org.h2.value.ValueDouble this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/h2/value/ValueDouble;
            0    3     1  value  D
    MethodParameters:
       Name  Flags
      value  

  public org.h2.value.Value add(org.h2.value.Value);
    descriptor: (Lorg/h2/value/Value;)Lorg/h2/value/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.h2.value.ValueDouble this
        start local 1 // org.h2.value.Value v
         0: .line 55
            aload 1 /* v */
            checkcast org.h2.value.ValueDouble
            astore 2 /* v2 */
        start local 2 // org.h2.value.ValueDouble v2
         1: .line 56
            aload 0 /* this */
            getfield org.h2.value.ValueDouble.value:D
            aload 2 /* v2 */
            getfield org.h2.value.ValueDouble.value:D
            dadd
            invokestatic org.h2.value.ValueDouble.get:(D)Lorg/h2/value/ValueDouble;
            areturn
        end local 2 // org.h2.value.ValueDouble v2
        end local 1 // org.h2.value.Value v
        end local 0 // org.h2.value.ValueDouble this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/value/ValueDouble;
            0    2     1     v  Lorg/h2/value/Value;
            1    2     2    v2  Lorg/h2/value/ValueDouble;
    MethodParameters:
      Name  Flags
      v     

  public org.h2.value.Value subtract(org.h2.value.Value);
    descriptor: (Lorg/h2/value/Value;)Lorg/h2/value/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.h2.value.ValueDouble this
        start local 1 // org.h2.value.Value v
         0: .line 61
            aload 1 /* v */
            checkcast org.h2.value.ValueDouble
            astore 2 /* v2 */
        start local 2 // org.h2.value.ValueDouble v2
         1: .line 62
            aload 0 /* this */
            getfield org.h2.value.ValueDouble.value:D
            aload 2 /* v2 */
            getfield org.h2.value.ValueDouble.value:D
            dsub
            invokestatic org.h2.value.ValueDouble.get:(D)Lorg/h2/value/ValueDouble;
            areturn
        end local 2 // org.h2.value.ValueDouble v2
        end local 1 // org.h2.value.Value v
        end local 0 // org.h2.value.ValueDouble this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/value/ValueDouble;
            0    2     1     v  Lorg/h2/value/Value;
            1    2     2    v2  Lorg/h2/value/ValueDouble;
    MethodParameters:
      Name  Flags
      v     

  public org.h2.value.Value negate();
    descriptor: ()Lorg/h2/value/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.value.ValueDouble this
         0: .line 67
            aload 0 /* this */
            getfield org.h2.value.ValueDouble.value:D
            dneg
            invokestatic org.h2.value.ValueDouble.get:(D)Lorg/h2/value/ValueDouble;
            areturn
        end local 0 // org.h2.value.ValueDouble this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueDouble;

  public org.h2.value.Value multiply(org.h2.value.Value);
    descriptor: (Lorg/h2/value/Value;)Lorg/h2/value/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.h2.value.ValueDouble this
        start local 1 // org.h2.value.Value v
         0: .line 72
            aload 1 /* v */
            checkcast org.h2.value.ValueDouble
            astore 2 /* v2 */
        start local 2 // org.h2.value.ValueDouble v2
         1: .line 73
            aload 0 /* this */
            getfield org.h2.value.ValueDouble.value:D
            aload 2 /* v2 */
            getfield org.h2.value.ValueDouble.value:D
            dmul
            invokestatic org.h2.value.ValueDouble.get:(D)Lorg/h2/value/ValueDouble;
            areturn
        end local 2 // org.h2.value.ValueDouble v2
        end local 1 // org.h2.value.Value v
        end local 0 // org.h2.value.ValueDouble this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/value/ValueDouble;
            0    2     1     v  Lorg/h2/value/Value;
            1    2     2    v2  Lorg/h2/value/ValueDouble;
    MethodParameters:
      Name  Flags
      v     

  public org.h2.value.Value divide(org.h2.value.Value);
    descriptor: (Lorg/h2/value/Value;)Lorg/h2/value/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.h2.value.ValueDouble this
        start local 1 // org.h2.value.Value v
         0: .line 78
            aload 1 /* v */
            checkcast org.h2.value.ValueDouble
            astore 2 /* v2 */
        start local 2 // org.h2.value.ValueDouble v2
         1: .line 79
            aload 2 /* v2 */
            getfield org.h2.value.ValueDouble.value:D
            dconst_0
            dcmpl
            ifne 3
         2: .line 80
            sipush 22012
            aload 0 /* this */
            invokevirtual org.h2.value.ValueDouble.getSQL:()Ljava/lang/String;
            invokestatic org.h2.message.DbException.get:(ILjava/lang/String;)Lorg/h2/message/DbException;
            athrow
         3: .line 82
      StackMap locals: org.h2.value.ValueDouble
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.value.ValueDouble.value:D
            aload 2 /* v2 */
            getfield org.h2.value.ValueDouble.value:D
            ddiv
            invokestatic org.h2.value.ValueDouble.get:(D)Lorg/h2/value/ValueDouble;
            areturn
        end local 2 // org.h2.value.ValueDouble v2
        end local 1 // org.h2.value.Value v
        end local 0 // org.h2.value.ValueDouble this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/h2/value/ValueDouble;
            0    4     1     v  Lorg/h2/value/Value;
            1    4     2    v2  Lorg/h2/value/ValueDouble;
    MethodParameters:
      Name  Flags
      v     

  public org.h2.value.ValueDouble modulus(org.h2.value.Value);
    descriptor: (Lorg/h2/value/Value;)Lorg/h2/value/ValueDouble;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.h2.value.ValueDouble this
        start local 1 // org.h2.value.Value v
         0: .line 87
            aload 1 /* v */
            checkcast org.h2.value.ValueDouble
            astore 2 /* other */
        start local 2 // org.h2.value.ValueDouble other
         1: .line 88
            aload 2 /* other */
            getfield org.h2.value.ValueDouble.value:D
            dconst_0
            dcmpl
            ifne 3
         2: .line 89
            sipush 22012
            aload 0 /* this */
            invokevirtual org.h2.value.ValueDouble.getSQL:()Ljava/lang/String;
            invokestatic org.h2.message.DbException.get:(ILjava/lang/String;)Lorg/h2/message/DbException;
            athrow
         3: .line 91
      StackMap locals: org.h2.value.ValueDouble
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.value.ValueDouble.value:D
            aload 2 /* other */
            getfield org.h2.value.ValueDouble.value:D
            drem
            invokestatic org.h2.value.ValueDouble.get:(D)Lorg/h2/value/ValueDouble;
            areturn
        end local 2 // org.h2.value.ValueDouble other
        end local 1 // org.h2.value.Value v
        end local 0 // org.h2.value.ValueDouble this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/h2/value/ValueDouble;
            0    4     1      v  Lorg/h2/value/Value;
            1    4     2  other  Lorg/h2/value/ValueDouble;
    MethodParameters:
      Name  Flags
      v     

  public java.lang.StringBuilder getSQL(java.lang.StringBuilder);
    descriptor: (Ljava/lang/StringBuilder;)Ljava/lang/StringBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.h2.value.ValueDouble this
        start local 1 // java.lang.StringBuilder builder
         0: .line 96
            aload 0 /* this */
            getfield org.h2.value.ValueDouble.value:D
            ldc Infinity
            dcmpl
            ifne 3
         1: .line 97
            aload 1 /* builder */
            ldc "POWER(0, -1)"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 98
            goto 10
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield org.h2.value.ValueDouble.value:D
            ldc -Infinity
            dcmpl
            ifne 6
         4: .line 99
            aload 1 /* builder */
            ldc "(-POWER(0, -1))"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         5: .line 100
            goto 10
      StackMap locals:
      StackMap stack:
         6: aload 0 /* this */
            getfield org.h2.value.ValueDouble.value:D
            invokestatic java.lang.Double.isNaN:(D)Z
            ifeq 9
         7: .line 101
            aload 1 /* builder */
            ldc "SQRT(-1)"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         8: .line 102
            goto 10
         9: .line 103
      StackMap locals:
      StackMap stack:
            aload 1 /* builder */
            aload 0 /* this */
            getfield org.h2.value.ValueDouble.value:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            pop
        10: .line 105
      StackMap locals:
      StackMap stack:
            aload 1 /* builder */
            areturn
        end local 1 // java.lang.StringBuilder builder
        end local 0 // org.h2.value.ValueDouble this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lorg/h2/value/ValueDouble;
            0   11     1  builder  Ljava/lang/StringBuilder;
    MethodParameters:
         Name  Flags
      builder  

  public org.h2.value.TypeInfo getType();
    descriptor: ()Lorg/h2/value/TypeInfo;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.value.ValueDouble this
         0: .line 110
            getstatic org.h2.value.TypeInfo.TYPE_DOUBLE:Lorg/h2/value/TypeInfo;
            areturn
        end local 0 // org.h2.value.ValueDouble this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueDouble;

  public int getValueType();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.value.ValueDouble this
         0: .line 115
            bipush 7
            ireturn
        end local 0 // org.h2.value.ValueDouble this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueDouble;

  public int compareTypeSafe(org.h2.value.Value, org.h2.value.CompareMode);
    descriptor: (Lorg/h2/value/Value;Lorg/h2/value/CompareMode;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.h2.value.ValueDouble this
        start local 1 // org.h2.value.Value o
        start local 2 // org.h2.value.CompareMode mode
         0: .line 120
            aload 0 /* this */
            getfield org.h2.value.ValueDouble.value:D
            aload 1 /* o */
            checkcast org.h2.value.ValueDouble
            getfield org.h2.value.ValueDouble.value:D
            invokestatic java.lang.Double.compare:(DD)I
            ireturn
        end local 2 // org.h2.value.CompareMode mode
        end local 1 // org.h2.value.Value o
        end local 0 // org.h2.value.ValueDouble this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueDouble;
            0    1     1     o  Lorg/h2/value/Value;
            0    1     2  mode  Lorg/h2/value/CompareMode;
    MethodParameters:
      Name  Flags
      o     
      mode  

  public int getSignum();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.h2.value.ValueDouble this
         0: .line 125
            aload 0 /* this */
            getfield org.h2.value.ValueDouble.value:D
            dconst_0
            dcmpl
            ifne 1
            iconst_0
            goto 3
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.h2.value.ValueDouble.value:D
            dconst_0
            dcmpg
            ifge 2
            iconst_m1
            goto 3
      StackMap locals:
      StackMap stack:
         2: iconst_1
      StackMap locals:
      StackMap stack: int
         3: ireturn
        end local 0 // org.h2.value.ValueDouble this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/h2/value/ValueDouble;

  public double getDouble();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.value.ValueDouble this
         0: .line 130
            aload 0 /* this */
            getfield org.h2.value.ValueDouble.value:D
            dreturn
        end local 0 // org.h2.value.ValueDouble this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueDouble;

  public java.lang.String getString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.value.ValueDouble this
         0: .line 135
            aload 0 /* this */
            getfield org.h2.value.ValueDouble.value:D
            invokestatic java.lang.Double.toString:(D)Ljava/lang/String;
            areturn
        end local 0 // org.h2.value.ValueDouble this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueDouble;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // org.h2.value.ValueDouble this
         0: .line 144
            aload 0 /* this */
            getfield org.h2.value.ValueDouble.value:D
            invokestatic java.lang.Double.doubleToRawLongBits:(D)J
            lstore 1 /* hash */
        start local 1 // long hash
         1: .line 145
            lload 1 /* hash */
            lload 1 /* hash */
            bipush 32
            lushr
            lxor
            l2i
            ireturn
        end local 1 // long hash
        end local 0 // org.h2.value.ValueDouble this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/value/ValueDouble;
            1    2     1  hash  J

  public java.lang.Object getObject();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.value.ValueDouble this
         0: .line 150
            aload 0 /* this */
            getfield org.h2.value.ValueDouble.value:D
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            areturn
        end local 0 // org.h2.value.ValueDouble this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueDouble;

  public void set(java.sql.PreparedStatement, int);
    descriptor: (Ljava/sql/PreparedStatement;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.h2.value.ValueDouble this
        start local 1 // java.sql.PreparedStatement prep
        start local 2 // int parameterIndex
         0: .line 156
            aload 1 /* prep */
            iload 2 /* parameterIndex */
            aload 0 /* this */
            getfield org.h2.value.ValueDouble.value:D
            invokeinterface java.sql.PreparedStatement.setDouble:(ID)V
         1: .line 157
            return
        end local 2 // int parameterIndex
        end local 1 // java.sql.PreparedStatement prep
        end local 0 // org.h2.value.ValueDouble this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/h2/value/ValueDouble;
            0    2     1            prep  Ljava/sql/PreparedStatement;
            0    2     2  parameterIndex  I
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
                Name  Flags
      prep            
      parameterIndex  

  public static org.h2.value.ValueDouble get(double);
    descriptor: (D)Lorg/h2/value/ValueDouble;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // double d
         0: .line 166
            dload 0 /* d */
            dconst_1
            dcmpl
            ifne 2
         1: .line 167
            getstatic org.h2.value.ValueDouble.ONE:Lorg/h2/value/ValueDouble;
            areturn
         2: .line 168
      StackMap locals:
      StackMap stack:
            dload 0 /* d */
            dconst_0
            dcmpl
            ifne 4
         3: .line 170
            getstatic org.h2.value.ValueDouble.ZERO:Lorg/h2/value/ValueDouble;
            areturn
         4: .line 171
      StackMap locals:
      StackMap stack:
            dload 0 /* d */
            invokestatic java.lang.Double.isNaN:(D)Z
            ifeq 6
         5: .line 172
            getstatic org.h2.value.ValueDouble.NAN:Lorg/h2/value/ValueDouble;
            areturn
         6: .line 174
      StackMap locals:
      StackMap stack:
            new org.h2.value.ValueDouble
            dup
            dload 0 /* d */
            invokespecial org.h2.value.ValueDouble.<init>:(D)V
            invokestatic org.h2.value.Value.cache:(Lorg/h2/value/Value;)Lorg/h2/value/Value;
            checkcast org.h2.value.ValueDouble
            areturn
        end local 0 // double d
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0     d  D
    MethodParameters:
      Name  Flags
      d     

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.h2.value.ValueDouble this
        start local 1 // java.lang.Object other
         0: .line 179
            aload 1 /* other */
            instanceof org.h2.value.ValueDouble
            ifne 2
         1: .line 180
            iconst_0
            ireturn
         2: .line 182
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* other */
            checkcast org.h2.value.ValueDouble
            aconst_null
            invokevirtual org.h2.value.ValueDouble.compareTypeSafe:(Lorg/h2/value/Value;Lorg/h2/value/CompareMode;)I
            ifne 3
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_0
            ireturn
        end local 1 // java.lang.Object other
        end local 0 // org.h2.value.ValueDouble this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/h2/value/ValueDouble;
            0    4     1  other  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      other  

  public org.h2.value.Value modulus(org.h2.value.Value);
    descriptor: (Lorg/h2/value/Value;)Lorg/h2/value/Value;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.h2.value.ValueDouble.modulus:(Lorg/h2/value/Value;)Lorg/h2/value/ValueDouble;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "ValueDouble.java"