summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/schema/fieldoperation/MatchOperation.java
blob: a568b5b0f6685a2005331729833f8b372ce77836 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// 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.Case;
import com.yahoo.schema.document.MatchAlgorithm;
import com.yahoo.schema.document.MatchType;
import com.yahoo.schema.document.SDField;

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

    private MatchType matchingType;
    private Case casing;
    private Integer gramSize;
    private Integer maxLength;
    private MatchAlgorithm matchingAlgorithm;
    private String exactMatchTerminator;

    public void setMatchingType(MatchType matchingType) {
        this.matchingType = matchingType;
    }

    public void setGramSize(Integer gramSize) {
        this.gramSize = gramSize;
    }
    public void setMaxLength(Integer maxLength) {
        this.maxLength = maxLength;
    }

    public void setMatchingAlgorithm(MatchAlgorithm matchingAlgorithm) {
        this.matchingAlgorithm = matchingAlgorithm;
    }

    public void setExactMatchTerminator(String exactMatchTerminator) {
        this.exactMatchTerminator = exactMatchTerminator;
    }

    public void setCase(Case casing) {
        this.casing = casing;
    }

    public void apply(SDField field) {
        if (matchingType != null) {
            field.setMatchingType(matchingType);
        }
        if (casing != null) {
            field.setMatchingCase(casing);
        }
        if (gramSize != null) {
            field.getMatching().setGramSize(gramSize);
        }
        if (maxLength != null) {
            field.getMatching().maxLength(maxLength);
        }
        if (matchingAlgorithm != null) {
            field.setMatchingAlgorithm(matchingAlgorithm);
        }
        if (exactMatchTerminator != null) {
            field.getMatching().setExactMatchTerminator(exactMatchTerminator);
        }
    }

}