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


/**
 * An interface used for anything which represents a single block of query input.
 *
 * @author Steinar Knutsen
 */
public interface BlockItem extends HasIndexItem {

    /** The untransformed raw text from the user serving as base for this item. */
    String getRawWord();

    /** Returns the substring which is the origin of this item, or null if none */
    Substring getOrigin();

    /** Returns the value of this term as a string */
    String stringValue();

    /**
     * Returns whether this block of text originates from a user and should therefore
     * receive the normal processing applied to raw text (such as stemming).
     */
    boolean isFromQuery();

    boolean isStemmed();

    /** Returns whether this item represents normal text */
    boolean isWords();

    /**
     * If the block has to be resegmented, what operator should be chosen if it
     * is necessary to change operator?
     */
    SegmentingRule getSegmentingRule();

}