aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/prelude/query/ExactStringItem.java
blob: cb0752e5408823ca310de1d54821d7654c7e8077 (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 Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.prelude.query;

/**
 * Used to signal that this term requires exact match if the backend supports it.
 *
 * @author baldersheim
 */

public class ExactStringItem extends WordItem {

    public ExactStringItem(String substring) {
        this(substring, false);
    }

    public ExactStringItem(String substring, boolean isFromQuery) {
        super(substring, isFromQuery);
    }

    @Override
    public ItemType getItemType() {
        return ItemType.EXACT;
    }

    @Override
    public String getName() {
        return "EXACTSTRING";
    }

    @Override
    public String stringValue() {
        return getWord();
    }

}