Example usage for io.vertx.sqlclient.data Numeric isNaN

List of usage examples for io.vertx.sqlclient.data Numeric isNaN

Introduction

In this page you can find the example usage for io.vertx.sqlclient.data Numeric isNaN.

Prototype

public boolean isNaN() 

Source Link

Usage

From source file:examples.MySQLClientExamples.java

public void numericExample(Row row) {
    Numeric numeric = row.get(Numeric.class, 0);
    if (numeric.isNaN()) {
        // Handle NaN
    } else {/*from   ww  w  .  j a  va  2s . co m*/
        BigDecimal value = numeric.bigDecimalValue();
    }
}