集合操作的利器:CollectionUtils

使用CollectionUtils的Predicate来过滤一个集合list中某种class的子集合

CollectionUtils.filter(this.list, new Predicate(){
	public boolean evaluate(Object object) {
		if(object instanceof TSysDepartment){//TSysDepartment为要过滤的对象
			return false;
		}
		return true;
	}
});

  

你可能感兴趣的:(Collection)