📄 timerid.java
字号:
package javax.slee.facilities;/** * A <code>TimerID</code> is used to identify a timer started by an SBB entity. */public interface TimerID { /** * Compare this timer ID for equality with another. * @param obj the object to compare this with. * @return <code>true</code> if <code>obj</code> is an instance of this class * representing the same timer as this, <code>false</code> otherwise. */ public boolean equals(Object obj); /** * Get a hash code value for this timer ID. * @return a hash code value. */ public int hashCode(); /** * Get the textual representation of the timer ID object. * @return the textual representation of the timer ID object. */ public String toString();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -