aboutsummaryrefslogtreecommitdiffstats
path: root/linguistics/src/main/java/com/yahoo/language/process/LinguisticsContext.java
blob: bb556ec64daa30c68a2e78638fa086848e6e9c54 (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
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.language.process;

import java.util.Objects;
import java.util.Optional;

/**
 * The context in which some text is linguistically processed.
 *
 * @author bratseth
 */
public class LinguisticsContext {

    private static final LinguisticsContext empty = new LinguisticsContext(null, null);

    private final Optional<String> schema;
    private final Optional<String> field;

    private LinguisticsContext(Optional<String> schema, Optional<String> field) {
        this.schema = schema;
        this.field = field;
    }

    /** Returns the schema we are processing for, if determined. */
    public Optional<String> schema() { return schema; }

    /** Returns the schema we are processing for, if determined. */
    public Optional<String> field() { return field; }

    public static LinguisticsContext empty() { return empty; }

    public static class Builder {

        private String schema = null;
        private String field = null;

        public Builder schema(String schema) {
            this.schema = Objects.requireNonNull(schema);
            return this;
        }

        public Builder field(String field) {
            this.field = Objects.requireNonNull(field);
            return this;
        }

        public LinguisticsContext build() {
            return new LinguisticsContext(Optional.ofNullable(schema), Optional.ofNullable(field));
        }

    }

}