summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/prelude/hitfield/StringFieldPart.java
blob: 2d04fa3d08dd7a2bfc333e38dac62498218e1333 (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
// Copyright 2016 Yahoo Inc. 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 which is a possibly
 * mutable string element
 *
 * @author <a href="mailto:steinar@yahoo-inc.com">Steinar Knutsen</a>
 */
public class StringFieldPart implements FieldPart {
    private String content;
    private final String initContent;
    // Whether this element represents a (part of) a token or a
    // delimiter string. When splitting existing parts, the new
    // parts should inherit this state from the object they were
    // split from.
    private boolean tokenOrDelimiter;
    public StringFieldPart(String content, boolean tokenOrDelimiter) {
        this.content = content;
        initContent = content;
        this.tokenOrDelimiter = tokenOrDelimiter;
    }
    public boolean isFinal() { return false; }
    public boolean isToken() { return tokenOrDelimiter; }
    public String getContent() { return content; }
    public void setContent(String content) {
        this.content = content;
    }
    public String getInitContent() { return initContent; }
    public String toString() { return content; }
}