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

pl.allegro.tech.hermes.api.MetricDecimalValue Maven / Gradle / Ivy

There is a newer version: 2.6.22
Show newest version
package pl.allegro.tech.hermes.api;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;

import java.util.Objects;

import static java.lang.Double.parseDouble;

public class MetricDecimalValue {
    private static final String UNAVAILABLE_STRING = "unavailable";
    private static final MetricDecimalValue UNAVAILABLE = new MetricDecimalValue(false, "-1.0");

    private final boolean available;
    private final String value;

    private MetricDecimalValue(boolean available, String value) {
        this.available = available;
        this.value = value;
    }

    public static MetricDecimalValue unavailable() {
        return UNAVAILABLE;
    }

    public static MetricDecimalValue of(String value) {
        return new MetricDecimalValue(true, value);
    }

    @JsonCreator
    public static MetricDecimalValue deserialize(String value) {
        if (UNAVAILABLE_STRING.equals(value)) {
            return unavailable();
        }
        return of(value);
    }

    @JsonValue
    public String asString() {
        return available ? value : UNAVAILABLE_STRING;
    }

    public double toDouble() {
        return parseDouble(value);
    }

    public boolean isAvailable() {
        return available;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        MetricDecimalValue that = (MetricDecimalValue) o;
        return available == that.available
                && Objects.equals(value, that.value);
    }

    @Override
    public int hashCode() {
        return Objects.hash(available, value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy