All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yahoo.document.fieldset.NoFields Maven / Gradle / Ivy

The newest version!
// 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 NoFields implements FieldSet {
    public static final String NAME = "[none]";
    @Override
    public boolean contains(FieldSet o) {
        return (o instanceof NoFields);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy