aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/prelude/fastsearch/Float16Field.java
blob: 5822537971f11a4683d6dd5dff3098f385dcc7b6 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.prelude.fastsearch;

import com.yahoo.data.access.Inspector;
import com.yahoo.search.result.NanNumber;

/**
 * A 16-bit float, represented as a (32-bit) Float in Java, as there is no 16-bit float support.
 *
 * @author bratseth
 */
public class Float16Field extends DocsumField {

    static final double EMPTY_VALUE = Float.NaN;

    public Float16Field(String name) {
        super(name);
    }

    private Object convert(float value) {
        if (Float.isNaN(value)) {
            return NanNumber.NaN;
        } else {
            return Float.valueOf(value);
        }
    }

    @Override
    public Object convert(Inspector value) {
        return convert((float)value.asDouble(EMPTY_VALUE));
    }

}