package com.xxxx.modules.common.web;
/**
* 接口ListUtilsHook,它是ListUtils的函数钩子。
* 用来给ListUtils做函数钩子的接口。
* @param <T>
*/
public interface ListUtilsHook<T> {
public boolean test(T t);
}
package com.xxxx.modules.common.web;
/**
* 接口ListUtilsHook,它是ListUtils的函数钩子。
* 用来给ListUtils做函数钩子的接口。
* @param <T>
*/
public interface ListUtilsHook<T> {
public boolean test(T t);
}