public class SharedMethodLib extends Object
Constructor and Description |
---|
SharedMethodLib() |
Modifier and Type | Method and Description |
---|---|
Boolean |
isEmpty(Object v)
判断 Collection、Map、数组、Iterator、Iterable 类型对象中的元素个数是否为 0
规则:
1:null 返回 true
2:List、Set 等一切继承自 Collection 的,返回 isEmpty()
3:Map 返回 isEmpty()
4:数组返回 length == 0
5:Iterator 返回 ! hasNext()
6:Iterable 返回 ! iterator().hasNext()
注意:原先 Logic.isTrue(Object) 中对集合与数组类型为空的判断转移到此方法中
|
Boolean |
notEmpty(Object v) |
public Boolean isEmpty(Object v)
Copyright © 2018. All rights reserved.