summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/prelude/hitfield/FieldPart.java
blob: 6ca5feb610fab5384261d34588630268b2a8c4cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.prelude.hitfield;

/**
 * Represents an element of a hit property
 *
 * @author Steinar Knutsen
 */
public interface FieldPart {

    boolean isFinal();
    boolean isToken();
    String getContent();
    String toString();

}