public enum ResultCode extends Enum<ResultCode>
value()
method.
Enum Constant and Description |
---|
ACCESS_TECH_UNABLE_TO_PROCESS
Access Technology unable to process command
|
BACKWARD_MOVE_BY_USER
Backward move in the proactive UICC session requested by the user
|
BEYOND_TERMINAL_CAPABILITY
Command beyond terminal's capabilities
|
BIP_ERROR
Bearer Independent Protocol error
|
CMD_DATA_NOT_UNDERSTOOD
Command data not understood by terminal
|
CMD_NUM_NOT_KNOWN
Command number not known by terminal
|
CMD_TYPE_NOT_UNDERSTOOD
Command type not understood by terminal
|
CONTRADICTION_WITH_TIMER
Action in contradiction with the current timer state
|
FRAMES_ERROR
Frames error
|
HELP_INFO_REQUIRED
Help information required by the user
|
LAUNCH_BROWSER_ERROR
Launch browser generic error code
|
MMS_ERROR
MMS Error
|
MMS_TEMPORARY
MMS temporary problem.
|
MULTI_CARDS_CMD_ERROR
MultipleCard commands error
|
NAA_CALL_CONTROL_TEMPORARY
Interaction with call control by NAA, temporary problem
|
NETWORK_CRNTLY_UNABLE_TO_PROCESS
Network currently unable to process command
|
NO_RESPONSE_FROM_USER
No response from user
|
OK
Command performed successfully
|
PRFRMD_ICON_NOT_DISPLAYED
Command performed successfully, but requested icon could not be
displayed
|
PRFRMD_LIMITED_SERVICE
Command performed successfully, limited service
|
PRFRMD_MODIFIED_BY_NAA
Command performed, but modified by call control by NAA
|
PRFRMD_NAA_NOT_ACTIVE
REFRESH performed but indicated NAA was not active
|
PRFRMD_TONE_NOT_PLAYED
Command performed successfully, tone not played
|
PRFRMD_WITH_ADDITIONAL_EFS_READ
REFRESH performed with additional EFs read
|
PRFRMD_WITH_MISSING_INFO
Command performed, with missing information
|
PRFRMD_WITH_MODIFICATION
Command performed with modification
|
PRFRMD_WITH_PARTIAL_COMPREHENSION
Command performed with partial comprehension
|
REQUIRED_VALUES_MISSING
Error, required values are missing
|
SMS_RP_ERROR
SMS RP-ERROR
|
SS_RETURN_ERROR
SS Return Error
|
TERMINAL_CRNTLY_UNABLE_TO_PROCESS
Terminal currently unable to process command
|
UICC_SESSION_TERM_BY_USER
Proactive UICC session terminated by the user
|
USER_CLEAR_DOWN_CALL
User cleared down call before connection or network release
|
USER_NOT_ACCEPT
User did not accept the proactive command
|
USIM_CALL_CONTROL_PERMANENT
Interaction with call control by USIM or MO short message control by
USIM, permanent problem
|
USSD_RETURN_ERROR
USSD Return Error
|
USSD_SS_SESSION_TERM_BY_USER
USSD or SS transaction terminated by the user
|
Modifier and Type | Method and Description |
---|---|
static ResultCode |
fromInt(int value) |
int |
value()
Retrieves the actual result code that this object represents.
|
static ResultCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResultCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResultCode OK
public static final ResultCode PRFRMD_WITH_PARTIAL_COMPREHENSION
public static final ResultCode PRFRMD_WITH_MISSING_INFO
public static final ResultCode PRFRMD_WITH_ADDITIONAL_EFS_READ
public static final ResultCode PRFRMD_ICON_NOT_DISPLAYED
public static final ResultCode PRFRMD_MODIFIED_BY_NAA
public static final ResultCode PRFRMD_LIMITED_SERVICE
public static final ResultCode PRFRMD_WITH_MODIFICATION
public static final ResultCode PRFRMD_NAA_NOT_ACTIVE
public static final ResultCode PRFRMD_TONE_NOT_PLAYED
public static final ResultCode UICC_SESSION_TERM_BY_USER
public static final ResultCode BACKWARD_MOVE_BY_USER
public static final ResultCode NO_RESPONSE_FROM_USER
public static final ResultCode HELP_INFO_REQUIRED
public static final ResultCode USSD_SS_SESSION_TERM_BY_USER
public static final ResultCode TERMINAL_CRNTLY_UNABLE_TO_PROCESS
public static final ResultCode NETWORK_CRNTLY_UNABLE_TO_PROCESS
public static final ResultCode USER_NOT_ACCEPT
public static final ResultCode USER_CLEAR_DOWN_CALL
public static final ResultCode CONTRADICTION_WITH_TIMER
public static final ResultCode NAA_CALL_CONTROL_TEMPORARY
public static final ResultCode LAUNCH_BROWSER_ERROR
public static final ResultCode MMS_TEMPORARY
public static final ResultCode BEYOND_TERMINAL_CAPABILITY
public static final ResultCode CMD_TYPE_NOT_UNDERSTOOD
public static final ResultCode CMD_DATA_NOT_UNDERSTOOD
public static final ResultCode CMD_NUM_NOT_KNOWN
public static final ResultCode SS_RETURN_ERROR
public static final ResultCode SMS_RP_ERROR
public static final ResultCode REQUIRED_VALUES_MISSING
public static final ResultCode USSD_RETURN_ERROR
public static final ResultCode MULTI_CARDS_CMD_ERROR
public static final ResultCode USIM_CALL_CONTROL_PERMANENT
public static final ResultCode BIP_ERROR
public static final ResultCode ACCESS_TECH_UNABLE_TO_PROCESS
public static final ResultCode FRAMES_ERROR
public static final ResultCode MMS_ERROR
public static ResultCode[] values()
for (ResultCode c : ResultCode.values()) System.out.println(c);
public static ResultCode 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 int value()
public static ResultCode fromInt(int value)