queryexpr.java

来自「用于传感器网络的节点操作系统 TinyOS 结构设计非常有意思」· Java 代码 · 共 24 行

JAVA
24
字号
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 + =
减小字号Ctrl + -
显示快捷键?