Jarrod has an excellent point, work around the problem.
The one horrible case is where some tool expects to see the bean pattern and reacts poorly if you use "isReturnable()" or getBookPageCount() where the page count is calculated instead of an attribute. In these cases I sometimes see "izReturnable()" which looks horrible, but it is what it is. the other can often be rephrased to something else like countPages(). In general the bean pattern just sucks and should be nuked from orbit and replaced with annotations.
Oh also, the other ugly case is a variable named "class" which is a great description of a variable containing a "class" object, many people use clazz--you just kinda get used to it.
But vs keyword I guess I'd say that the convention is just to use a more descriptive method/variable name.