- All Implemented Interfaces:
- Rule
public class NoStaticExceptFinalRule
extends Object
implements Rule
This rule ensures that there are no static fields unless they are final.
Another best practice, using static fields for memory sharing and allowing read/write
should be very tightly controlled, and generally don't belong in POJOs or other similar
class of data repositories.
- Author:
- oshoukry