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

com.backblaze.b2.json.B2JsonDoubleHandler Maven / Gradle / Ivy

Go to download

The core logic for B2 SDK for Java. Does not include any implementations of B2WebApiClient.

There is a newer version: 6.3.0
Show newest version
/*
 * Copyright 2017, Backblaze Inc. All Rights Reserved.
 * License https://www.backblaze.com/using_b2_code.html
 */

package com.backblaze.b2.json;

import java.io.IOException;

/**
 * (De)serializes Double objects.
 */
public class B2JsonDoubleHandler implements B2JsonTypeHandler {

    private final boolean isPrimitive;

    public B2JsonDoubleHandler(boolean isPrimitive) {
        this.isPrimitive = isPrimitive;
    }

    public Class getHandledClass() {
        return Double.class;
    }

    public void serialize(Double obj, B2JsonWriter out) throws IOException {
        out.writeText(obj.toString());
    }

    public Double deserialize(B2JsonReader in, int options) throws B2JsonException, IOException {
        String str = in.readNumberAsString();
        return deserializeUrlParam(str);
    }

    public Double deserializeUrlParam(String str) throws B2JsonException {
        try {
            return Double.valueOf(str);
        }
        catch (NumberFormatException e) {
            throw new B2JsonException("bad Double: " + str);
        }
    }

    public Double defaultValueForOptional() {
        if (isPrimitive) {
            return 0.0;
        }
        else {
            return null;
        }
    }

    public boolean isStringInJson() {
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy