MCPcopy Index your code
hub / github.com/OpenFeign/feign / isNotBlank

Method isNotBlank

core/src/main/java/feign/Util.java:303–305  ·  view source on GitHub ↗

If the provided String is not null or empty. @param value to evaluate. @return true of the value is not null and not empty.

(String value)

Source from the content-addressed store, hash-verified

301 * @return true of the value is not null and not empty.
302 */
303 public static boolean isNotBlank(String value) {
304 return value != null && !value.isEmpty();
305 }
306
307 /**
308 * If the provided String is null or empty.

Callers 8

resolveMethod · 0.95
targetMethod · 0.95
parameterNameMethod · 0.95
ProxiedMethod · 0.80
getConnectionMethod · 0.80

Calls 1

isEmptyMethod · 0.80