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

/**
 * A word that matches substrings of words
 *
 * @author banino
 */
public class SubstringItem extends WordItem {

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

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

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

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

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

}