aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/query/textserialize/item/ExactStringConverter.java
blob: 4b68ecfe5a9e075f2dfb25d696e644a657763411 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2016 Yahoo Inc. 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.ExactstringItem;

/**
 * @author balder
 */
// TODO: balder to fix javadoc
public class ExactStringConverter extends WordConverter {
    @Override
    ExactstringItem newTermItem(String word) {
        return new ExactstringItem(word);
    }
}