Package 

Annotation Nullable

  • All Implemented Interfaces:
    java.lang.annotation.Annotation

    @Documented()@Retention(value = )@Target(value = {}) 
    public @interface Nullable
    
                        

    Denotes that a parameter, field or method return value can be null.

    When decorating a method call parameter, this denotes that the parameter can legitimately be null and the method will gracefully deal with it. Typically used on optional parameters.

    When decorating a method, this denotes the method might legitimately return null.

    This is a marker annotation and it has no specific attributes.

    • Method Summary

      Modifier and Type Method Description
      • Methods inherited from class java.lang.annotation.Annotation

        annotationType, equals, hashCode, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait