• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

wz2cool / mybatis-dynamic-query / #393

19 May 2024 12:06PM CUT coverage: 72.18% (-17.3%) from 89.44%
#393

push

wz2cool
add ci

1977 of 2739 relevant lines covered (72.18%)

0.72 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

31.25
/src/main/java/com/github/wz2cool/dynamic/FilterOperators.java
1
package com.github.wz2cool.dynamic;
2

3
import com.github.wz2cool.dynamic.builder.opeartor.*;
4

5
import java.util.Collection;
6

7
public final class FilterOperators {
1✔
8

9
    /// region and operator
10

11
    public <R> LessThan<R> lessThan(R value) {
12
        return new LessThan<>(value);
1✔
13
    }
14

15
    public <R> LessThanOrEqual<R> lessThanOrEqual(R value) {
16
        return new LessThanOrEqual<>(value);
×
17
    }
18

19
    public <R> Equal<R> isEqual(R value) {
20
        return new Equal<>(value);
1✔
21
    }
22

23
    public <R> NotEqual<R> notEqual(R value) {
24
        return new NotEqual<>(value);
×
25
    }
26

27
    public <R> GreaterThanOrEqual<R> greaterThanOrEqual(R value) {
28
        return new GreaterThanOrEqual<>(value);
1✔
29
    }
30

31
    public <R> GreaterThan<R> greaterThan(R value) {
32
        return new GreaterThan<>(value);
1✔
33
    }
34

35
    public <R> StartWith<R> startWith(R value) {
36
        return new StartWith<>(value);
×
37
    }
38

39
    public <R> EndWith<R> endWith(R value) {
40
        return new EndWith<>(value);
×
41
    }
42

43
    public <R> Contains<R> contains(R value) {
44
        return new Contains<>(value);
×
45
    }
46

47
    public <R> NotContains<R> notContains(R value) {
48
        return new NotContains<>(value);
×
49
    }
50

51
    @SafeVarargs
52
    public final <R> In<R> in(R... values) {
53
        return new In<>(values);
×
54
    }
55

56
    public <R> In<R> in(Collection<R> values) {
57
        return new In<>(values);
×
58
    }
59

60
    @SafeVarargs
61
    public final <R> NotIn<R> notIn(R... values) {
62
        return new NotIn<>(values);
×
63
    }
64

65
    public <R> NotIn<R> notIn(Collection<R> values) {
66
        return new NotIn<>(values);
×
67
    }
68

69
    public <R> Between<R> between(R value1, R value2) {
70
        return new Between<>(value1, value2);
×
71
    }
72

73
    /// endregion
74

75
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc