Uses of Annotation Type
com.google.errorprone.annotations.IncompatibleModifiers
Packages that use IncompatibleModifiers
-
Uses of IncompatibleModifiers in com.google.errorprone.annotations
Classes in com.google.errorprone.annotations with annotations of type IncompatibleModifiersModifier and TypeClassDescription@interface
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
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 IncompatibleModifiersModifier and TypeClassDescription@interface
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()
).