You should apply your regexp on getDeclaredMethods() reflection method (or GetMethods() if you want only the public ones).
[Warning: both methods will throw a SecurityException if there is a security manager.]
You apply it on each name of each method returned by getDeclaredMethod() and only memorize in a Collection the compliant Methods.
Something like!
try
{
final Pattern aMethodNamePattern = Pattern.compile("foo[Bb]ar");
final List<Method> someMethods = aClass.getDeclaredMethods();
final List<Method> someCompliantMethods = new ArrayList<Method>();
for(final Method aMethod: someMethods)
{
final String aMethodName = aMethod.getName();
final Matcher aMethodNameMatcher = aMethodNamePattern.getMatcher(aMethodName);
if(aMethodNameMatcher.matches() == true)
{
someCompliantMethods.add(aMethod);
}
}
catch(...) // catch all exceptions like SecurityException, IllegalAccessException, ...