Where can I find the java @NotNull and @Nullable annotations. I looked in the javax.annotations namespace but could not find it.
For example
    public String(@NotNull String whatever){
     //doSomething
     return whatever;
     }
OR
    @Nullable public String( String whatever){
     //doSomething
     return whatever
 
    