📄 epctypefiltermbean.java
字号:
/* * EPCTypeFilterMBean.java * * Created on December 15, 2005, 2:29 PM */package com.sun.rfid.filter;import com.sun.autoid.ems.ComponentMBean;/** * This interface extends service bean interface to include methods for * getting information about the operation of the __RfidFilter__. You * generally don't need to modify this file. */public interface EPCTypeFilterMBean extends ComponentMBean { /** * Returns the count of the identifiers discarded by this filter. * * @return the number of discarded identifiers */ public long getDiscardedCount(); /** * Returns the count of identifiers that passed through this filter. * * @return the number of processed identifiers */ public long getPassCount(); /** * Resets the filter counters. Both the pass counter and the discard * counter are reset as a result of calling this method. */ public void reset();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -