The documentation for @ParametersAreNonnullByDefault says, that:

This annotation can be applied to a package, class or method to indicate that the method parameters in that element are nonnull by default unless ...

I don't consider a method's return type/value to be it's parameter. It is only part of its signature, so this is kind of ambiguous for me.

The Java tutorial for methods seems to think like me.


As Joachim Sauer pointed out for me in the comments section of his answer, the name @ParametersAreNonnullByDefault (parameters) should've clearly indicated for me that this annotation doesn't apply to methods' return types/values. I was blind! :) Thanks Joachim!

In light of this I can only says that an @EverythingIsNonnullByDefault should exist somwhere. :)

link|improve this question

So what's your reason to think that this annotation would apply to return values? – David Zaslavsky Oct 5 '11 at 8:06
I don't have a reason for why it would do this, instead I would like it to be doing this. (See my comment for this answer.) – Kohányi Róbert Oct 5 '11 at 8:12
feedback

1 Answer

up vote 1 down vote accepted

I don't see a reason why @ParametersAreNonnullByDefault should apply to return values.

link|improve this answer
My reason it that @Nonnull can be applied to method return values too. At least the documentation for FindBugs' @NonNull annotation (which is almost, if not the same thing as @Nonnull) says just that. – Kohányi Róbert Oct 5 '11 at 8:11
@Psycho_Dad: you specify the nullity of a return type, yes. But that doesn't mean that this default annotation influences it if you don't set one. – Joachim Sauer Oct 5 '11 at 8:13
Sorry but I didn't understand you clearly. My question was if the annotation at hand applies to methods' return values too if I set it. I couldn't care less what it does if I don't set it. :) – Kohányi Róbert Oct 5 '11 at 8:21
By "don't set one" I meant "don't specify @Nonnull@ or @Nullable on the return type explicitly". – Joachim Sauer Oct 5 '11 at 8:22
Yeah OK, but still I want to know that if I set @ParametersAreNonnullByDefault on a class would that implicitly apply a @Nonnull annotation on methods' return types or not. Because in my read applying it so implicitly applies @Nonnull on method parameters. – Kohányi Róbert Oct 5 '11 at 8:35
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.