| 限定符和类型 | 字段和说明 |
|---|---|
int |
code |
| 限定符和类型 | 方法和说明 |
|---|---|
static Opcode |
fromInt(int i) |
static Opcode |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static Opcode[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final Opcode OC_RESERVED
public static final Opcode OC_RESOLUTION
public static final Opcode OC_GET_SITE_INFO
public static final Opcode OC_CREATE_ID
public static final Opcode OC_DELETE_ID
public static final Opcode OC_ADD_ELEMENT
public static final Opcode OC_REMOVE_ELEMENT
public static final Opcode OC_MODIFY_ELEMENT
public static final Opcode OC_LIST_IDS
public static final Opcode OC_LIST_DERIVED_PREFIXES
public static final Opcode OC_CHALLENGE_RESPONSE
public static final Opcode OC_VERIFY_RESPONSE
public static final Opcode OC_HOME_PREFIX
public static final Opcode OC_UNHOME_PREFIX
public static final Opcode OC_LIST_HOMED_PREFIXES
public static final Opcode OC_SESSION_SETUP
public static final Opcode OC_SESSION_TERMINATE
public static Opcode[] values()
for (Opcode c : Opcode.values()) System.out.println(c);
public static Opcode valueOf(java.lang.String name)
name - 要返回的枚举常量的名称。java.lang.IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException - 如果参数为空值public static Opcode fromInt(int i)