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

import com.yahoo.search.result.StructuredData;
import com.yahoo.data.access.Inspector;
import com.yahoo.data.access.Type;
import com.yahoo.container.search.LegacyEmulationConfig;
import com.yahoo.prelude.hitfield.JSONString;

/**
 * A hit field containing JSON structured data
 */
public class StructDataField extends JSONField {

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

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

    public Object convert(Inspector value) {
        if (getEmulConfig().stringBackedStructuredData() || value.type() == Type.STRING) {
            return super.convert(value);
        }
        return new StructuredData(value);
    }

}