⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 predicate.java

📁 用applet实现很多应用小程序
💻 JAVA
字号:
package prefuse.data.expression;

/**
 * A Predicate is a special type of Expression that carries the guarantee
 * that the {@link prefuse.data.expression.Expression#getBoolean(Tuple)}
 * method is supported. Predicates are particularly useful for issuing
 * queries to prefuse data structures. To create a Predicate, one can
 * either instantiate the desired Predicate instances directly, or
 * write a parseable textual expression. The documentation for the
 * {@link prefuse.data.expression.parser.ExpressionParser} class includes
 * a full reference for prefuse's textual expression language.
 * 
 * @author <a href="http://jheer.org">jeffrey heer</a>
 */
public interface Predicate extends Expression {
    
} // end of interface Predicate

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -