aboutsummaryrefslogtreecommitdiffstats
path: root/predicate-search-core/src/main/java/com/yahoo/document/predicate/SimplePredicates.java
blob: 4e319810e60971d1bb66991a6a8ed33542c9bac4 (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
66
67
68
69
70
71
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.document.predicate;

import java.util.ArrayList;
import java.util.List;

/**
 * @author Simon Thoresen Hult
 */
public class SimplePredicates {

    public static Predicate newPredicate() {
        return new Predicate() {

            @Override
            protected void appendTo(StringBuilder out) {
                out.append("<anon>");
            }

        };
    }

    public static Predicate newString(String str) {
        return new StringNode(str);
    }

    public static List<Predicate> newStrings(String... arr) {
        List<Predicate> ret = new ArrayList<>(arr.length);
        for (String str : arr) {
            ret.add(newString(str));
        }
        return ret;
    }

    private static class StringNode extends Predicate {

        final String str;

        StringNode(String str) {
            this.str = str;
        }

        @Override
        public int hashCode() {
            return str.hashCode();
        }

        @Override
        public boolean equals(Object obj) {
            if (obj == this) {
                return true;
            }
            if (!(obj instanceof StringNode)) {
                return false;
            }
            StringNode rhs = (StringNode)obj;
            if (!str.equals(rhs.str)) {
                return false;
            }
            return true;
        }

        @Override
        protected void appendTo(StringBuilder out) {
            out.append(str);
        }

    }

}