aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/prelude/fastsearch/FeatureDataField.java
blob: 1f60dd3d1cfa2730bc8fa588f0e4e037b2dd26ba (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
// Copyright 2017 Yahoo Holdings. 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.data.access.Type;
import com.yahoo.search.result.FeatureData;

/**
 * Class representing a "feature data" field.  This was historically
 * just a string containing JSON; now it's a structure of
 * data (that will be rendered as JSON by default).
 */
public class FeatureDataField extends LongstringField {

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

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

    @Override
    public Object convert(Inspector value) {
        if (! value.valid()) {
            return null;
        }
        if (value.type() == Type.STRING) {
            return value.asString();
        }
        return new FeatureData(value);
    }

}