aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/main/java/com/yahoo/document/annotation/SpanTrees.java
blob: 9d0cde3d3f7582e355168b1ba3b82e19ae9e64df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.document.annotation;

/**
 * This is a container for all {@link SpanTree}s constants used by built-in Vespa features.
 *
 * @author Simon Thoresen Hult
 */
@SuppressWarnings({ "UnusedDeclaration" })
// TODO: Remove. This is the wrong place.
public final class SpanTrees {

    private SpanTrees() {
        // unreachable
    }

    public static final String LINGUISTICS = "linguistics";
}