public final class io.vertx.sqlclient.data.Numeric extends java.lang.Number
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.vertx.sqlclient.data.Numeric
  super_class: java.lang.Number
{
  public static final io.vertx.sqlclient.data.Numeric NaN;
    descriptor: Lio/vertx/sqlclient/data/Numeric;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  private final java.lang.Number value;
    descriptor: Ljava/lang/Number;
    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 30
            new io.vertx.sqlclient.data.Numeric
            dup
            ldc NaN
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            invokespecial io.vertx.sqlclient.data.Numeric.<init>:(Ljava/lang/Number;)V
            putstatic io.vertx.sqlclient.data.Numeric.NaN:Lio/vertx/sqlclient/data/Numeric;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static io.vertx.sqlclient.data.Numeric create(java.lang.Number);
    descriptor: (Ljava/lang/Number;)Lio/vertx/sqlclient/data/Numeric;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.Number number
         0: .line 44
            aload 0 /* number */
            ifnonnull 2
         1: .line 45
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         2: .line 47
      StackMap locals:
      StackMap stack:
            aload 0 /* number */
            instanceof java.lang.Double
            ifeq 3
            aload 0 /* number */
            checkcast java.lang.Double
            invokevirtual java.lang.Double.isInfinite:()Z
            ifne 4
      StackMap locals:
      StackMap stack:
         3: aload 0 /* number */
            instanceof java.lang.Float
            ifeq 5
            aload 0 /* number */
            checkcast java.lang.Float
            invokevirtual java.lang.Float.isInfinite:()Z
            ifeq 5
         4: .line 48
      StackMap locals:
      StackMap stack:
            new java.lang.NumberFormatException
            dup
            ldc "Infinite numbers are not valid numerics"
            invokespecial java.lang.NumberFormatException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 50
      StackMap locals:
      StackMap stack:
            new io.vertx.sqlclient.data.Numeric
            dup
            aload 0 /* number */
            invokespecial io.vertx.sqlclient.data.Numeric.<init>:(Ljava/lang/Number;)V
            areturn
        end local 0 // java.lang.Number number
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0  number  Ljava/lang/Number;
    MethodParameters:
        Name  Flags
      number  

  public static io.vertx.sqlclient.data.Numeric parse(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/sqlclient/data/Numeric;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // java.lang.String s
         0: .line 62
            aload 0 /* s */
            dup
            astore 1
            invokevirtual java.lang.String.hashCode:()I
            lookupswitch { // 1
                78043: 1
              default: 3
          }
      StackMap locals: java.lang.String
      StackMap stack:
         1: aload 1
            ldc "NaN"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 2
            goto 3
         2: .line 64
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.sqlclient.data.Numeric.NaN:Lio/vertx/sqlclient/data/Numeric;
            areturn
         3: .line 66
      StackMap locals:
      StackMap stack:
            new io.vertx.sqlclient.data.Numeric
            dup
            new java.math.BigDecimal
            dup
            aload 0 /* s */
            invokespecial java.math.BigDecimal.<init>:(Ljava/lang/String;)V
            invokespecial io.vertx.sqlclient.data.Numeric.<init>:(Ljava/lang/Number;)V
            areturn
        end local 0 // java.lang.String s
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0     s  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      s     

  private void <init>(java.lang.Number);
    descriptor: (Ljava/lang/Number;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.data.Numeric this
        start local 1 // java.lang.Number value
         0: .line 70
            aload 0 /* this */
            invokespecial java.lang.Number.<init>:()V
         1: .line 71
            aload 0 /* this */
            aload 1 /* value */
            putfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
         2: .line 72
            return
        end local 1 // java.lang.Number value
        end local 0 // io.vertx.sqlclient.data.Numeric this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/vertx/sqlclient/data/Numeric;
            0    3     1  value  Ljava/lang/Number;
    MethodParameters:
       Name  Flags
      value  

  public short shortValue();
    descriptor: ()S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.sqlclient.data.Numeric this
         0: .line 76
            aload 0 /* this */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            invokevirtual java.lang.Number.shortValue:()S
            ireturn
        end local 0 // io.vertx.sqlclient.data.Numeric this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/sqlclient/data/Numeric;

  public int intValue();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.sqlclient.data.Numeric this
         0: .line 81
            aload 0 /* this */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            invokevirtual java.lang.Number.intValue:()I
            ireturn
        end local 0 // io.vertx.sqlclient.data.Numeric this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/sqlclient/data/Numeric;

  public long longValue();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.sqlclient.data.Numeric this
         0: .line 86
            aload 0 /* this */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            invokevirtual java.lang.Number.longValue:()J
            lreturn
        end local 0 // io.vertx.sqlclient.data.Numeric this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/sqlclient/data/Numeric;

  public float floatValue();
    descriptor: ()F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.sqlclient.data.Numeric this
         0: .line 91
            aload 0 /* this */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            invokevirtual java.lang.Number.floatValue:()F
            freturn
        end local 0 // io.vertx.sqlclient.data.Numeric this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/sqlclient/data/Numeric;

  public double doubleValue();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.sqlclient.data.Numeric this
         0: .line 96
            aload 0 /* this */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            invokevirtual java.lang.Number.doubleValue:()D
            dreturn
        end local 0 // io.vertx.sqlclient.data.Numeric this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/sqlclient/data/Numeric;

  public boolean isNaN();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.sqlclient.data.Numeric this
         0: .line 103
            aload 0 /* this */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            instanceof java.lang.Double
            ifeq 1
            aload 0 /* this */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.isNaN:()Z
            ifne 3
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            instanceof java.lang.Float
            ifeq 2
            aload 0 /* this */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            checkcast java.lang.Float
            invokevirtual java.lang.Float.isNaN:()Z
            ifne 3
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_1
            ireturn
        end local 0 // io.vertx.sqlclient.data.Numeric this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/data/Numeric;

  public java.math.BigDecimal bigDecimalValue();
    descriptor: ()Ljava/math/BigDecimal;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.sqlclient.data.Numeric this
         0: .line 112
            aload 0 /* this */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            instanceof java.math.BigDecimal
            ifeq 2
         1: .line 113
            aload 0 /* this */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            checkcast java.math.BigDecimal
            areturn
         2: .line 114
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            instanceof java.math.BigInteger
            ifeq 4
         3: .line 115
            new java.math.BigDecimal
            dup
            aload 0 /* this */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            checkcast java.math.BigInteger
            invokespecial java.math.BigDecimal.<init>:(Ljava/math/BigInteger;)V
            areturn
         4: .line 116
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.sqlclient.data.Numeric.isNaN:()Z
            ifeq 6
         5: .line 117
            aconst_null
            areturn
         6: .line 119
      StackMap locals:
      StackMap stack:
            new java.math.BigDecimal
            dup
            aload 0 /* this */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokespecial java.math.BigDecimal.<init>:(Ljava/lang/String;)V
            areturn
        end local 0 // io.vertx.sqlclient.data.Numeric this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/vertx/sqlclient/data/Numeric;

  public java.math.BigInteger bigIntegerValue();
    descriptor: ()Ljava/math/BigInteger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.sqlclient.data.Numeric this
         0: .line 129
            aload 0 /* this */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            instanceof java.math.BigInteger
            ifeq 2
         1: .line 130
            aload 0 /* this */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            checkcast java.math.BigInteger
            areturn
         2: .line 131
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            instanceof java.math.BigDecimal
            ifeq 4
         3: .line 132
            aload 0 /* this */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            checkcast java.math.BigDecimal
            invokevirtual java.math.BigDecimal.toBigInteger:()Ljava/math/BigInteger;
            areturn
         4: .line 133
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.sqlclient.data.Numeric.isNaN:()Z
            ifeq 6
         5: .line 134
            aconst_null
            areturn
         6: .line 136
      StackMap locals:
      StackMap stack:
            new java.math.BigInteger
            dup
            aload 0 /* this */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            invokevirtual java.lang.Number.longValue:()J
            invokestatic java.lang.Long.toString:(J)Ljava/lang/String;
            invokespecial java.math.BigInteger.<init>:(Ljava/lang/String;)V
            areturn
        end local 0 // io.vertx.sqlclient.data.Numeric this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/vertx/sqlclient/data/Numeric;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // io.vertx.sqlclient.data.Numeric this
        start local 1 // java.lang.Object obj
         0: .line 142
            aload 1 /* obj */
            instanceof io.vertx.sqlclient.data.Numeric
            ifeq 13
         1: .line 143
            aload 1 /* obj */
            checkcast io.vertx.sqlclient.data.Numeric
            astore 2 /* that */
        start local 2 // io.vertx.sqlclient.data.Numeric that
         2: .line 144
            aload 0 /* this */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 2 /* that */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpne 4
         3: .line 145
            aload 0 /* this */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            aload 2 /* that */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ireturn
         4: .line 147
      StackMap locals: io.vertx.sqlclient.data.Numeric
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.sqlclient.data.Numeric.bigDecimalValue:()Ljava/math/BigDecimal;
            astore 3 /* l */
        start local 3 // java.math.BigDecimal l
         5: .line 148
            aload 2 /* that */
            invokevirtual io.vertx.sqlclient.data.Numeric.bigDecimalValue:()Ljava/math/BigDecimal;
            astore 4 /* r */
        start local 4 // java.math.BigDecimal r
         6: .line 149
            aload 3 /* l */
            ifnonnull 9
         7: .line 150
            aload 4 /* r */
            ifnonnull 8
            iconst_1
            ireturn
      StackMap locals: java.math.BigDecimal java.math.BigDecimal
      StackMap stack:
         8: iconst_0
            ireturn
         9: .line 151
      StackMap locals:
      StackMap stack:
            aload 4 /* r */
            ifnonnull 11
        10: .line 152
            iconst_0
            ireturn
        11: .line 154
      StackMap locals:
      StackMap stack:
            aload 3 /* l */
            aload 4 /* r */
            invokevirtual java.math.BigDecimal.compareTo:(Ljava/math/BigDecimal;)I
            ifne 12
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
        12: iconst_0
            ireturn
        end local 4 // java.math.BigDecimal r
        end local 3 // java.math.BigDecimal l
        end local 2 // io.vertx.sqlclient.data.Numeric that
        13: .line 157
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // io.vertx.sqlclient.data.Numeric this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lio/vertx/sqlclient/data/Numeric;
            0   14     1   obj  Ljava/lang/Object;
            2   13     2  that  Lio/vertx/sqlclient/data/Numeric;
            5   13     3     l  Ljava/math/BigDecimal;
            6   13     4     r  Ljava/math/BigDecimal;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.sqlclient.data.Numeric this
         0: .line 162
            aload 0 /* this */
            invokevirtual io.vertx.sqlclient.data.Numeric.intValue:()I
            ireturn
        end local 0 // io.vertx.sqlclient.data.Numeric this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/sqlclient/data/Numeric;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.sqlclient.data.Numeric this
         0: .line 167
            aload 0 /* this */
            getfield io.vertx.sqlclient.data.Numeric.value:Ljava/lang/Number;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            areturn
        end local 0 // io.vertx.sqlclient.data.Numeric this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/sqlclient/data/Numeric;
}
SourceFile: "Numeric.java"