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

/**
 * @author Thomas Gundersen
 */
public class AllFields implements FieldSet {
    public static final String NAME = "[all]";
    @Override
    public boolean contains(FieldSet o) {
        return true;
    }

    @Override
    public FieldSet clone() {
        return new AllFields();
    }
}