protected
Constants (that is, variables marked static or final) are not reported.
static
final
Example:
public class A { protected Object object; // warning protected final static int MODE = 0; // constant, no warning }