@@ -53,7 +53,9 @@ class NullabilityIntrospector implements Nullability.Introspector {
53
53
private static final List <NullabilityProvider > providers ;
54
54
55
55
static {
56
- providers = new ArrayList <>(4 );
56
+ providers = new ArrayList <>(5 );
57
+
58
+ providers .add (new PrimitiveProvider ());
57
59
58
60
if (Jsr305Provider .isAvailable ()) {
59
61
providers .add (new Jsr305Provider ());
@@ -202,6 +204,39 @@ static abstract class NullabilityProvider {
202
204
abstract Spec evaluate (AnnotatedElement element , ElementType elementType );
203
205
}
204
206
207
+ /**
208
+ * Provider considering primitive types.
209
+ */
210
+ static class PrimitiveProvider extends NullabilityProvider {
211
+
212
+ @ Override
213
+ Spec evaluate (AnnotatedElement element , ElementType elementType ) {
214
+
215
+ Class <?> type = null ;
216
+
217
+ if (element instanceof Method m ) {
218
+ type = m .getReturnType ();
219
+ }
220
+
221
+ if (element instanceof Parameter p ) {
222
+ type = p .getType ();
223
+ }
224
+
225
+ if (type != null ) {
226
+
227
+ if (ReflectionUtils .isVoid (type )) {
228
+ return Spec .NULLABLE ;
229
+ }
230
+
231
+ if (type .isPrimitive ()) {
232
+ return Spec .NON_NULL ;
233
+ }
234
+ }
235
+
236
+ return Spec .UNSPECIFIED ;
237
+ }
238
+ }
239
+
205
240
/**
206
241
* Spring provider leveraging {@link NonNullApi @NonNullApi}, {@link NonNullFields @NonNullFields},
207
242
* {@link NonNull @NonNull}, and {@link Nullable @Nullable} annotations.
@@ -515,6 +550,21 @@ public Nullability forParameter(Parameter parameter) {
515
550
516
551
return nullability ;
517
552
}
553
+
554
+ @ Override
555
+ public Nullability forParameter (int index ) {
556
+
557
+ if (index >= method .getParameterCount () || index < 0 ) {
558
+ throw new IndexOutOfBoundsException ();
559
+ }
560
+
561
+ return forParameter (method .getParameters ()[index ]);
562
+ }
563
+
564
+ @ Override
565
+ public int getParameterCount () {
566
+ return method .getParameterCount ();
567
+ }
518
568
}
519
569
520
570
/**
0 commit comments