Skip to content

Commit e9f77d6

Browse files
committed
DATACMNS-1499 - Added new convenience factory methods on Range.
1 parent 4e6b12f commit e9f77d6

File tree

2 files changed

+143
-1
lines changed

2 files changed

+143
-1
lines changed

src/main/java/org/springframework/data/domain/Range.java

+92-1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,84 @@ public static <T extends Comparable<T>> Range<T> unbounded() {
5858
return (Range<T>) UNBOUNDED;
5959
}
6060

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+
61139
/**
62140
* Create a {@link RangeBuilder} given the lower {@link Bound}.
63141
*
@@ -72,16 +150,29 @@ public static <T extends Comparable<T>> RangeBuilder<T> from(Bound<T> lower) {
72150
}
73151

74152
/**
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.
76155
*
77156
* @param lowerBound must not be {@literal null}.
78157
* @param upperBound must not be {@literal null}.
79158
* @since 2.0
159+
* @see #from(Bound)
80160
*/
81161
public static <T extends Comparable<T>> Range<T> of(Bound<T> lowerBound, Bound<T> upperBound) {
82162
return new Range<>(lowerBound, upperBound);
83163
}
84164

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+
85176
/**
86177
* Returns whether the {@link Range} contains the given value.
87178
*

src/test/java/org/springframework/data/domain/RangeUnitTests.java

+51
Original file line numberDiff line numberDiff line change
@@ -156,4 +156,55 @@ public void createsUnboundedRange() {
156156
assertThat(range.getLowerBound().getValue()).isEmpty();
157157
assertThat(range.getUpperBound().getValue()).isEmpty();
158158
}
159+
160+
@Test // DATACMNS-1499
161+
public void createsOpenRange() {
162+
163+
Range<Long> range = Range.open(5L, 10L);
164+
165+
assertThat(range.contains(5L)).isFalse();
166+
assertThat(range.contains(10L)).isFalse();
167+
}
168+
169+
@Test // DATACMNS-1499
170+
public void createsClosedRange() {
171+
172+
Range<Long> range = Range.closed(5L, 10L);
173+
174+
assertThat(range.contains(5L)).isTrue();
175+
assertThat(range.contains(10L)).isTrue();
176+
}
177+
178+
@Test // DATACMNS-1499
179+
public void createsLeftOpenRange() {
180+
181+
Range<Long> range = Range.leftOpen(5L, 10L);
182+
183+
assertThat(range.contains(5L)).isFalse();
184+
assertThat(range.contains(10L)).isTrue();
185+
}
186+
187+
@Test // DATACMNS-1499
188+
public void createsRightOpenRange() {
189+
190+
Range<Long> range = Range.rightOpen(5L, 10L);
191+
192+
assertThat(range.contains(5L)).isTrue();
193+
assertThat(range.contains(10L)).isFalse();
194+
}
195+
196+
@Test // DATACMNS-1499
197+
public void createsLeftUnboundedRange() {
198+
assertThat(Range.leftUnbounded(Bound.inclusive(10L)).contains(-10000L)).isTrue();
199+
}
200+
201+
@Test // DATACMNS-1499
202+
public void createsRightUnboundedRange() {
203+
assertThat(Range.rightUnbounded(Bound.inclusive(10L)).contains(10000L)).isTrue();
204+
}
205+
206+
@Test // DATACMNS-1499
207+
public void createsSingleValueRange() {
208+
assertThat(Range.just(10L).contains(10L)).isTrue();
209+
}
159210
}

0 commit comments

Comments
 (0)