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

📄 boundrystate.java

📁 一个用于搜索本地文件内容的小型搜索引擎
💻 JAVA
字号:
package queries;


public abstract class BoundryState {
	@SuppressWarnings("unchecked")
	protected Comparable left;
	@SuppressWarnings("unchecked")
	protected Comparable right;
	

	/**
	 * @param value
	 * @return
	 * if the value is in greater than the left and less than the right,return true
	 */
	public abstract boolean checkBoundry(Comparable value);
}

⌨️ 快捷键说明

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