33
33
import org .jspecify .annotations .Nullable ;
34
34
import org .springframework .data .mapping .PropertyPath ;
35
35
import org .springframework .data .util .Predicates ;
36
+ import org .springframework .lang .CheckReturnValue ;
37
+ import org .springframework .lang .Contract ;
36
38
import org .springframework .util .Assert ;
37
39
import org .springframework .util .ClassUtils ;
38
40
import org .springframework .util .ObjectUtils ;
@@ -405,16 +407,19 @@ public interface SelectStep {
405
407
/**
406
408
* Apply {@code DISTINCT}.
407
409
*/
410
+ @ CheckReturnValue
408
411
SelectStep distinct ();
409
412
410
413
/**
411
414
* Select the entity.
412
415
*/
416
+ @ CheckReturnValue
413
417
Select entity ();
414
418
415
419
/**
416
420
* Select the count.
417
421
*/
422
+ @ CheckReturnValue
418
423
Select count ();
419
424
420
425
/**
@@ -425,6 +430,7 @@ public interface SelectStep {
425
430
* @param paths
426
431
* @return
427
432
*/
433
+ @ CheckReturnValue
428
434
default Select instantiate (Class <?> resultType , Collection <JpqlQueryBuilder .PathExpression > paths ) {
429
435
return instantiate (resultType .getName (), paths );
430
436
}
@@ -436,6 +442,7 @@ default Select instantiate(Class<?> resultType, Collection<JpqlQueryBuilder.Path
436
442
* @param paths
437
443
* @return
438
444
*/
445
+ @ CheckReturnValue
439
446
Select instantiate (String resultType , Collection <JpqlQueryBuilder .PathExpression > paths );
440
447
441
448
/**
@@ -444,6 +451,7 @@ default Select instantiate(Class<?> resultType, Collection<JpqlQueryBuilder.Path
444
451
* @param paths
445
452
* @return
446
453
*/
454
+ @ CheckReturnValue
447
455
Select select (Collection <JpqlQueryBuilder .PathExpression > paths );
448
456
449
457
/**
@@ -452,6 +460,7 @@ default Select instantiate(Class<?> resultType, Collection<JpqlQueryBuilder.Path
452
460
* @param path
453
461
* @return
454
462
*/
463
+ @ CheckReturnValue
455
464
default Select select (JpqlQueryBuilder .PathExpression path ) {
456
465
return select (List .of (path ));
457
466
}
@@ -626,6 +635,8 @@ public interface Predicate {
626
635
* @param other
627
636
* @return a composed predicate combining this and {@code other} using the OR operator.
628
637
*/
638
+ @ Contract ("_ -> new" )
639
+ @ CheckReturnValue
629
640
default Predicate or (Predicate other ) {
630
641
return new OrPredicate (this , other );
631
642
}
@@ -636,6 +647,8 @@ default Predicate or(Predicate other) {
636
647
* @param other
637
648
* @return a composed predicate combining this and {@code other} using the AND operator.
638
649
*/
650
+ @ Contract ("_ -> new" )
651
+ @ CheckReturnValue
639
652
default Predicate and (Predicate other ) { // don't like the structuring of this and the nest() thing
640
653
return new AndPredicate (this , other );
641
654
}
@@ -645,6 +658,8 @@ default Predicate and(Predicate other) { // don't like the structuring of this a
645
658
*
646
659
* @return a nested variant of this predicate.
647
660
*/
661
+ @ Contract ("-> new" )
662
+ @ CheckReturnValue
648
663
default Predicate nest () {
649
664
return new NestedPredicate (this );
650
665
}
@@ -700,6 +715,7 @@ private Select(Selection selection, Entity entity) {
700
715
* @param join
701
716
* @return
702
717
*/
718
+ @ Contract ("_ -> this" )
703
719
public Select join (Join join ) {
704
720
705
721
if (join .source () instanceof Join parent ) {
@@ -716,6 +732,7 @@ public Select join(Join join) {
716
732
* @param orderBy
717
733
* @return
718
734
*/
735
+ @ Contract ("_ -> this" )
719
736
public Select orderBy (Expression orderBy ) {
720
737
this .orderBy .add (orderBy );
721
738
return this ;
0 commit comments