summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/searchdefinition/ImmutableSearch.java
blob: 795ec9badbb0bf4264a4954f5505c4874271e235 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.searchdefinition;

import com.yahoo.searchdefinition.document.ImmutableSDField;
import com.yahoo.vespa.documentmodel.SummaryField;

import java.util.Map;
import java.util.stream.Stream;

/**
 * An interface containing the non-mutating methods of {@link Search}.
 * For description of the methods see {@link Search}.
 *
 * @author bjorncs
 */
public interface ImmutableSearch {

    Stream<ImmutableSDField> allImportedFields();

    ImmutableSDField getField(String name);

    Stream<ImmutableSDField> allFields();

    Map<String, SummaryField> getSummaryFields(ImmutableSDField field);
}