@@ -58,6 +58,84 @@ public static <T extends Comparable<T>> Range<T> unbounded() {
58
58
return (Range <T >) UNBOUNDED ;
59
59
}
60
60
61
+ /**
62
+ * Creates a new {@link Range} with inclusive bounds for both values.
63
+ *
64
+ * @param <T>
65
+ * @param from must not be {@literal null}.
66
+ * @param to must not be {@literal null}.
67
+ * @return
68
+ * @since 2.2
69
+ */
70
+ public static <T extends Comparable <T >> Range <T > closed (T from , T to ) {
71
+ return new Range <>(Bound .inclusive (from ), Bound .inclusive (to ));
72
+ }
73
+
74
+ /**
75
+ * Creates a new {@link Range} with inclusive bounds for both values.
76
+ *
77
+ * @param <T>
78
+ * @param from must not be {@literal null}.
79
+ * @param to must not be {@literal null}.
80
+ * @return
81
+ * @since 2.2
82
+ */
83
+ public static <T extends Comparable <T >> Range <T > open (T from , T to ) {
84
+ return new Range <>(Bound .exclusive (from ), Bound .exclusive (to ));
85
+ }
86
+
87
+ /**
88
+ * Creates a new left-open {@link Range}, i.e. left exclusive, right inclusive.
89
+ *
90
+ * @param <T>
91
+ * @param from must not be {@literal null}.
92
+ * @param to must not be {@literal null}.
93
+ * @return
94
+ * @since 2.2
95
+ */
96
+ public static <T extends Comparable <T >> Range <T > leftOpen (T from , T to ) {
97
+ return new Range <>(Bound .exclusive (from ), Bound .inclusive (to ));
98
+ }
99
+
100
+ /**
101
+ * Creates a new right-open {@link Range}, i.e. left inclusive, right exclusive.
102
+ *
103
+ * @param <T>
104
+ * @param from must not be {@literal null}.
105
+ * @param to must not be {@literal null}.
106
+ * @return
107
+ * @since 2.2
108
+ */
109
+ public static <T extends Comparable <T >> Range <T > rightOpen (T from , T to ) {
110
+ return new Range <>(Bound .inclusive (from ), Bound .exclusive (to ));
111
+ }
112
+
113
+ /**
114
+ * Creates a left-unbounded {@link Range} (the left bound set to {@link Bound#unbounded()}) with the given right
115
+ * bound.
116
+ *
117
+ * @param <T>
118
+ * @param to the right {@link Bound}, must not be {@literal null}.
119
+ * @return
120
+ * @since 2.2
121
+ */
122
+ public static <T extends Comparable <T >> Range <T > leftUnbounded (Bound <T > to ) {
123
+ return new Range <>(Bound .unbounded (), to );
124
+ }
125
+
126
+ /**
127
+ * Creates a right-unbounded {@link Range} (the right bound set to {@link Bound#unbounded()}) with the given left
128
+ * bound.
129
+ *
130
+ * @param <T>
131
+ * @param to the left {@link Bound}, must not be {@literal null}.
132
+ * @return
133
+ * @since 2.2
134
+ */
135
+ public static <T extends Comparable <T >> Range <T > rightUnbounded (Bound <T > from ) {
136
+ return new Range <>(from , Bound .unbounded ());
137
+ }
138
+
61
139
/**
62
140
* Create a {@link RangeBuilder} given the lower {@link Bound}.
63
141
*
@@ -72,16 +150,29 @@ public static <T extends Comparable<T>> RangeBuilder<T> from(Bound<T> lower) {
72
150
}
73
151
74
152
/**
75
- * Creates a new {@link Range} with the given lower and upper bound.
153
+ * Creates a new {@link Range} with the given lower and upper bound. Prefer {@link #from(Bound)} for a more builder
154
+ * style API.
76
155
*
77
156
* @param lowerBound must not be {@literal null}.
78
157
* @param upperBound must not be {@literal null}.
79
158
* @since 2.0
159
+ * @see #from(Bound)
80
160
*/
81
161
public static <T extends Comparable <T >> Range <T > of (Bound <T > lowerBound , Bound <T > upperBound ) {
82
162
return new Range <>(lowerBound , upperBound );
83
163
}
84
164
165
+ /**
166
+ * Creates a new Range with the given value as sole member.
167
+ *
168
+ * @param <T>
169
+ * @param value must not be {@literal null}.
170
+ * @return
171
+ */
172
+ public static <T extends Comparable <T >> Range <T > just (T value ) {
173
+ return Range .closed (value , value );
174
+ }
175
+
85
176
/**
86
177
* Returns whether the {@link Range} contains the given value.
87
178
*
0 commit comments