StringUtils.isBlank () vs String.isEmpty ()
Me encontré con un código que tiene lo siguiente: String foo = getvalue("foo"); if (StringUtils.isBlank(foo)) doStuff(); else doOtherStuff(); Esto parece ser funcionalmente equivalente a lo siguiente: String foo = getvalue("foo"); if (foo.isEmpty()) doStuff(); else doOtherStuff(); Hay una...