mibindex.java.svn-base
来自「snmp hibernate 源码, 类似hibernate的映射.」· SVN-BASE 代码 · 共 20 行
SVN-BASE
20 行
package org.opengoss.snmphibernate.api.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target( { ElementType.FIELD })
public @interface MibIndex {
public static final int VARSTR_WITH_LENGTH = -1;
public static final int VARSTR_WITHOUT_LENGTH = -2;
int no(); // index no, 0 start.
int length(); // length of the index
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?