final class Type {
private Type() {};
final public static long CACHE = 1 << 0;
final public static long COOKIES = 1 << 1;
final public static long DOWNLOADS = 1 << 2;
final public static long FORM_DATA = 1 << 3;
final public static long HISTORY = 1 << 4;
final public static long LOCAL_STORAGE = 1 << 5;
final public static long PASSWORDS = 1 << 6;
}
This should pass the lint but it doesn't: