MCPcopy Create free account
hub / github.com/afkT/DevUtils / isArray

Method isArray

lib/DevApp/src/main/java/dev/utils/common/ClassUtils.java:140–142  ·  view source on GitHub ↗

判断是否 Array 类型 @param clazz Class @return true yes, false no

(final Class<?> clazz)

Source from the content-addressed store, hash-verified

138 * @return {@code true} yes, {@code false} no
139 */
140 public static boolean isArray(final Class<?> clazz) {
141 return (clazz != null && clazz.isArray());
142 }
143
144 /**
145 * 判断是否参数类型

Callers 6

toJsonMethod · 0.45
fromJsonMethod · 0.45
wrapMethod · 0.45
lengthMethod · 0.45
isEmptyMethod · 0.45
toStringMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected