Annotation Interface NotCalledMethods
@Documented
@Retention(RUNTIME)
@Target({TYPE_USE,TYPE_PARAMETER})
public @interface NotCalledMethods
An annotation speculatively used by Lombok's lombok.config checkerframework = true option. It has
 no meaning to the Called Methods Checker, which treats it as 
@CalledMethods().
 A similar annotation might be supported in the future.
This annotation could be marked as deprecated, but that causes extra warnings when processing delombok'd code.
- See the Checker Framework Manual:
 - Called Methods Checker
 
- 
Required Element Summary
Required Elements 
- 
Element Details
- 
value
String[] valueThe names of the methods that have NOT been called.- Returns:
 - the names of the methods that have NOT been called
 
 
 -