Vérifiez si l'objet est une chaîne java

Object foo = "";

if( foo instanceof String ) {
  // do something String related to foo
}
Thankful Tuatara