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

📄 queryexpr.java

📁 用于传感器网络的节点操作系统 TinyOS 结构设计非常有意思
💻 JAVA
字号:
package net.tinyos.tinydb;/** Abstract interface for all kinds of expressions that    can appear in a query*/public interface QueryExpr {    /** Return true if this expression is an aggregator */    public boolean isAgg();        /** Return the id of the field this expression applies to */    public short getField();    /** Return the arithmetic operation that is used in the	arithmetic expression that will be performed to the 	field.    */    public short getFieldOp();    /** Return the constant that is used in the arithmetic 	expression that will be performed on the field.    */    public short getFieldConst();}

⌨️ 快捷键说明

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