aboutsummaryrefslogtreecommitdiffstats
path: root/jrt/src/com/yahoo/jrt/DoubleValue.java
blob: 490c301571c5dd96893c96a477f12c1b10a3eda1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jrt;


import java.nio.ByteBuffer;


/**
 * 64-bit floating-point value
 **/
public class DoubleValue extends Value
{
    private double value;

    /**
     * Create from a Java-type value
     *
     * @param value the value
     **/
    public DoubleValue(double value) { this.value = value; }

    /**
     * Create by decoding the value from the given buffer
     *
     * @param src buffer where the value is stored
     **/
    DoubleValue(ByteBuffer src) {
        value = src.getDouble();
    }

    /**
     * @return DOUBLE
     **/
    public byte type() { return DOUBLE; }
    public int count() { return 1; }

    int bytes() { return 8; }
    void encode(ByteBuffer dst) {
        dst.putDouble(value);
    }

    public double asDouble() { return value; }

    @Override
    public String toString() {
        return String.valueOf(value);
    }

}