aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/prelude/query/SuffixItem.java
blob: e364330a3778004c0d53e9db1d10186a26233c90 (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
36
37
38
39
40
41
42
// 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 a suffix of words instead of a complete word.
 *
 * @author Steinar Knutsen
 */
public class SuffixItem extends WordItem {

    public SuffixItem(String suffix) {
        this(suffix, false);
    }

    public SuffixItem(String suffix, boolean isFromQuery) {
        super(suffix, isFromQuery);
    }

    public SuffixItem(String substring, String indexName, boolean isFromQuery, Substring origin) {
        super(substring, indexName, isFromQuery, origin);
    }

    public SuffixItem newInstance(String word, String indexName, boolean isFromQuery, Substring origin) {
        return new SuffixItem(word, indexName, isFromQuery, origin);
    }

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

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

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

}