Package com.android.annotations
-
Enum Summary Enum Description VisibleForTesting.Visibility Intended visibility if the element had not been made public or package-private for testing. -
Annotation Types Summary Annotation Type Description NonNull Denotes that a parameter, field or method return value can never be null.NonNullByDefault Denotes that all parameters, fields or methods within a class or method by default can not be null.Nullable Denotes that a parameter, field or method return value can be null.VisibleForTesting Denotes that the class, method or field has its visibility relaxed so that unit tests can access it.