Uses of Class
com.google.errorprone.annotations.IncompatibleModifiers
-
Packages that use IncompatibleModifiers Package Description com.google.errorprone.annotations com.google.errorprone.annotations.concurrent -
-
Uses of IncompatibleModifiers in com.google.errorprone.annotations
Classes in com.google.errorprone.annotations with annotations of type IncompatibleModifiers Modifier and Type Class Description interface
ForOverride
Indicates that the annotated method is provided only to be overridden: it should not be invoked from outside its declaring source file (as if it isprivate
), and overriding methods should not be directly invoked at all.interface
Var
The parameter or local variable to which this annotation is applied is non-final. -
Uses of IncompatibleModifiers in com.google.errorprone.annotations.concurrent
Classes in com.google.errorprone.annotations.concurrent with annotations of type IncompatibleModifiers Modifier and Type Class Description interface
LazyInit
Use this annotation on any static or field that will be initialized lazily, where races yield no semantic difference in the code (as, for example, is the case withString.hashCode()
).
-