All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adgear.anoa.read.DoubleReader Maven / Gradle / Ivy

Go to download

Core classes for Anoa library, which aims to be a safe, convenient and fast record de/serialization wrapper for the Avro, Thrift and Jackson libraries, using the functional idioms of Java 8. The anoa-core module tries to keep upstream dependencies to a minimum.

There is a newer version: 3.1.2
Show newest version
package com.adgear.anoa.read;

import com.adgear.anoa.AnoaJacksonTypeException;
import com.fasterxml.jackson.core.JsonParser;

import java.io.IOException;

class DoubleReader extends AbstractReader {

  @Override
  protected Double read(JsonParser jacksonParser) throws IOException {
    return jacksonParser.getValueAsDouble();
  }

  @Override
  protected Double readStrict(JsonParser jacksonParser) throws AnoaJacksonTypeException, IOException {
    switch (jacksonParser.getCurrentToken()) {
      case VALUE_NUMBER_FLOAT:
        return jacksonParser.getDoubleValue();
      case VALUE_NUMBER_INT:
        return jacksonParser.getValueAsDouble();
      case VALUE_NULL:
        return null;
      default:
        throw new AnoaJacksonTypeException("Token is not number: " + jacksonParser.getCurrentToken());
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy