public enum CallType extends Enum<CallType>
| Enum Constant and Description |
|---|
RTTI_M_CALL |
RTTI_M_GET |
SIMPLE |
| Modifier and Type | Method and Description |
|---|---|
static CallType |
fromId(int id) |
int |
getId() |
static CallType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CallType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CallType SIMPLE
public static final CallType RTTI_M_GET
public static final CallType RTTI_M_CALL
public static CallType[] values()
for (CallType c : CallType.values()) System.out.println(c);
public static CallType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static CallType fromId(int id)
public int getId()
Copyright © 2017. All rights reserved.