aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/main/java/com/yahoo/document/fieldset/FieldSet.java
blob: ded387616fc37809278a3dcb621cd3beee958957 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright Yahoo. 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;
}