summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/query/textserialize/item/WordConverter.java
blob: b4d40f26a1d20e9a7ac26c0d6818dedcc0216be8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.query.textserialize.item;

import com.yahoo.prelude.query.TermItem;
import com.yahoo.prelude.query.WordItem;

/**
 * @author tonytv
 */
public class WordConverter extends TermConverter {
    @Override
    WordItem newTermItem(String word) {
        return new WordItem(word);
    }

    @Override
    protected String getValue(TermItem item) {
        return ((WordItem)item).getWord();
    }
}