Uses of Annotation Interface
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@interfaceIndicates 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.@interfaceThe 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@interfaceUse 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()).