aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/main/java/com/yahoo/document/fieldset/FieldSet.java
blob: 6461da9e54882c39ed519be4d2c4a4ca3042d4e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.document.fieldset;

/**
 * TODO: Move to Java and implement.
 */
public interface FieldSet {
    boolean contains(FieldSet o);

    FieldSet clone() throws CloneNotSupportedException;
}