I believe that is what you are looking for.
If you are searching a string for a particular character, you should use the indexOf methods of String instead.
Additionally, you can condense the code fragment you provided to one line:
return Character.isWhitespace(c.charAt(0));
Lastly, please use code tags when posting in the future.