summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/schema/fieldoperation/StemmingOperation.java
blob: a4bb00b0d07ff2edaea037c11261a7f296db3843 (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
26
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.schema.fieldoperation;

import com.yahoo.schema.document.SDField;
import com.yahoo.schema.document.Stemming;

/**
 * @author Einar M R Rosenvinge
 */
public class StemmingOperation implements FieldOperation {

    private String setting;

    public String getSetting() {
        return setting;
    }

    public void setSetting(String setting) {
        this.setting = setting;
    }

    public void apply(SDField field) {
        field.setStemming(Stemming.get(setting));
    }

}