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

/**
 * Created with IntelliJ IDEA.
 * User: thomasg
 * Date: 4/25/12
 * Time: 3:18 PM
 * To change this template use File | Settings | File Templates.
 */
public class NoFields implements FieldSet {
    @Override
    public boolean contains(FieldSet o) {
        return (o instanceof NoFields);
    }

    @Override
    public FieldSet clone() throws CloneNotSupportedException {
        return new NoFields();
    }
}