📄 predicate.java
字号:
package com.wrox.algorithms.iteration;/** * Generic interface for specifying filter criteria. * */public interface Predicate { /** * Determines if the predicate holds for a specified object. * * @param object The object to evaluate. * @return <code>true</code> if the predicate holds; otherwise <code>false</code>. */ public boolean evaluate(Object object);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -