aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/prelude/fastsearch/Int64Field.java
blob: 024a94765cc5928ccddba4b5d36e553c05dcd404 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
/**
 * Class representing a integer field in the result set
 *
 */
package com.yahoo.prelude.fastsearch;

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


/**
 * @author Bjørn Borud
 */
public class Int64Field extends DocsumField {

    static final long EMPTY_VALUE = Long.MIN_VALUE;

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

    private Object convert(long value) {
        if (value == EMPTY_VALUE) {
            return NanNumber.NaN;
        } else {
            return Long.valueOf(value);
        }
    }

    @Override
    public String toString() {
        return "field " + getName() + " type int64";
    }

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

}