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

Method isBlank

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

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

(String value)

Source from the content-addressed store, hash-verified

311 * @return true if the value is null or empty.
312 */
313 public static boolean isBlank(String value) {
314 return value == null || value.isEmpty();
315 }
316
317 /**
318 * Copy entire map of string collection.

Callers 4

targetMethod · 0.95
createMethod · 0.95

Calls 1

isEmptyMethod · 0.80

Tested by 2