// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. package com.yahoo.prelude.query; import edu.umd.cs.findbugs.annotations.NonNull; /** * An interface for items where it is useful to access an associated * index name. * * @author Steinar Knutsen */ public interface HasIndexItem { @NonNull public String getIndexName(); public int getNumWords(); }