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

/**
 * @author balder
 */
// TODO: balder to fix javadoc
public class ExactstringItem extends WordItem {

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

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

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

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

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