@@ -359,22 +359,22 @@ static StringConstant stringConstant(String constant) {
359
359
// functions
360
360
static <T extends Number > Add <T > add (BindableColumn <T > firstColumn , BasicColumn secondColumn ,
361
361
BasicColumn ... subsequentColumns ) {
362
- return Add .of (firstColumn , secondColumn , Arrays . asList ( subsequentColumns ) );
362
+ return Add .of (firstColumn , secondColumn , subsequentColumns );
363
363
}
364
364
365
365
static <T extends Number > Divide <T > divide (BindableColumn <T > firstColumn , BasicColumn secondColumn ,
366
366
BasicColumn ... subsequentColumns ) {
367
- return Divide .of (firstColumn , secondColumn , Arrays . asList ( subsequentColumns ) );
367
+ return Divide .of (firstColumn , secondColumn , subsequentColumns );
368
368
}
369
369
370
370
static <T extends Number > Multiply <T > multiply (BindableColumn <T > firstColumn , BasicColumn secondColumn ,
371
371
BasicColumn ... subsequentColumns ) {
372
- return Multiply .of (firstColumn , secondColumn , Arrays . asList ( subsequentColumns ) );
372
+ return Multiply .of (firstColumn , secondColumn , subsequentColumns );
373
373
}
374
374
375
375
static <T extends Number > Subtract <T > subtract (BindableColumn <T > firstColumn , BasicColumn secondColumn ,
376
376
BasicColumn ... subsequentColumns ) {
377
- return Subtract .of (firstColumn , secondColumn , Arrays . asList ( subsequentColumns ) );
377
+ return Subtract .of (firstColumn , secondColumn , subsequentColumns );
378
378
}
379
379
380
380
static <T > Concatenate <T > concatenate (BindableColumn <T > firstColumn , BasicColumn secondColumn ,
@@ -555,7 +555,7 @@ static <T> IsLessThanOrEqualToWhenPresent<T> isLessThanOrEqualToWhenPresent(Supp
555
555
556
556
@ SafeVarargs
557
557
static <T > IsIn <T > isIn (T ...values ) {
558
- return isIn ( Arrays . asList (values ) );
558
+ return IsIn . of (values );
559
559
}
560
560
561
561
static <T > IsIn <T > isIn (Collection <T > values ) {
@@ -568,7 +568,7 @@ static <T> IsInWithSubselect<T> isIn(Buildable<SelectModel> selectModelBuilder)
568
568
569
569
@ SafeVarargs
570
570
static <T > IsInWhenPresent <T > isInWhenPresent (T ...values ) {
571
- return isInWhenPresent ( Arrays . asList (values ) );
571
+ return IsInWhenPresent . of (values );
572
572
}
573
573
574
574
static <T > IsInWhenPresent <T > isInWhenPresent (Collection <T > values ) {
@@ -577,7 +577,7 @@ static <T> IsInWhenPresent<T> isInWhenPresent(Collection<T> values) {
577
577
578
578
@ SafeVarargs
579
579
static <T > IsNotIn <T > isNotIn (T ...values ) {
580
- return isNotIn ( Arrays . asList (values ) );
580
+ return IsNotIn . of (values );
581
581
}
582
582
583
583
static <T > IsNotIn <T > isNotIn (Collection <T > values ) {
@@ -590,7 +590,7 @@ static <T> IsNotInWithSubselect<T> isNotIn(Buildable<SelectModel> selectModelBui
590
590
591
591
@ SafeVarargs
592
592
static <T > IsNotInWhenPresent <T > isNotInWhenPresent (T ...values ) {
593
- return isNotInWhenPresent ( Arrays . asList (values ) );
593
+ return IsNotInWhenPresent . of (values );
594
594
}
595
595
596
596
static <T > IsNotInWhenPresent <T > isNotInWhenPresent (Collection <T > values ) {
@@ -705,31 +705,31 @@ static IsNotLikeCaseInsensitiveWhenPresent isNotLikeCaseInsensitiveWhenPresent(S
705
705
}
706
706
707
707
static IsInCaseInsensitive isInCaseInsensitive (String ...values ) {
708
- return isInCaseInsensitive ( Arrays . asList (values ) );
708
+ return IsInCaseInsensitive . of (values );
709
709
}
710
710
711
711
static IsInCaseInsensitive isInCaseInsensitive (Collection <String > values ) {
712
712
return IsInCaseInsensitive .of (values );
713
713
}
714
714
715
715
static IsInCaseInsensitiveWhenPresent isInCaseInsensitiveWhenPresent (String ...values ) {
716
- return isInCaseInsensitiveWhenPresent ( Arrays . asList (values ) );
716
+ return IsInCaseInsensitiveWhenPresent . of (values );
717
717
}
718
718
719
719
static IsInCaseInsensitiveWhenPresent isInCaseInsensitiveWhenPresent (Collection <String > values ) {
720
720
return IsInCaseInsensitiveWhenPresent .of (values );
721
721
}
722
722
723
723
static IsNotInCaseInsensitive isNotInCaseInsensitive (String ...values ) {
724
- return isNotInCaseInsensitive ( Arrays . asList (values ) );
724
+ return IsNotInCaseInsensitive . of (values );
725
725
}
726
726
727
727
static IsNotInCaseInsensitive isNotInCaseInsensitive (Collection <String > values ) {
728
728
return IsNotInCaseInsensitive .of (values );
729
729
}
730
730
731
731
static IsNotInCaseInsensitiveWhenPresent isNotInCaseInsensitiveWhenPresent (String ...values ) {
732
- return isNotInCaseInsensitiveWhenPresent ( Arrays . asList (values ) );
732
+ return IsNotInCaseInsensitiveWhenPresent . of (values );
733
733
}
734
734
735
735
static IsNotInCaseInsensitiveWhenPresent isNotInCaseInsensitiveWhenPresent (Collection <String > values ) {
0 commit comments