public enum Result extends Enum<Result>
| Enum Constant and Description |
|---|
ABORTED
The requested operation was aborted due to some pre-empting event (e.g.
|
APPLICATION_NOT_REGISTERED
The request cannot be executed because no application interface has been
registered via
RegisterAppInterface
|
APPLICATION_REGISTERED_ALREADY
SDL does not support the interface version requested by the mobile
application
|
CANCEL_ROUTE
User selected to Cancel Route.
|
CHAR_LIMIT_EXCEEDED |
CORRUPTED_DATA
The data sent failed to pass CRC check in receiver end
|
DATA_NOT_AVAILABLE
The requested data is not available on this vehicle or is not published for the connected app.
|
DISALLOWED
RPC is not authorized in local policy table.
|
DUPLICATE_NAME
The provided name or synonym is a duplicate of some already-defined name
or synonym
|
ENCRYPTION_NEEDED
The data sent needs to be encrypted
|
EXPIRED_CERT
The certificate provided during authentication is expired.
|
FILE_NOT_FOUND
A specified file could not be found on Sync.
|
GENERIC_ERROR
Provided data is valid but something went wrong in the lower layers.
|
IGNORED
The requested operation was ignored because it was determined to be
redundant (e.g.
|
IN_USE
The data may not be changed, because it is currently in use.
|
INVALID_CERT
The certificate provided during authentication is invalid.
|
INVALID_DATA
The data sent is invalid.
|
INVALID_ID
One of the provided IDs is not valid.
|
OUT_OF_MEMORY
The system could not process the request because the necessary memory
couldn't be allocated
|
READ_ONLY
The requested data is read only thus cannot be change via remote control
|
REJECTED
The requested operation was rejected.
|
RESUME_FAILED
The provided hash ID does not match the hash of the current set of registered data or the core could not resume the previous data.
|
RETRY
The user interrupted the RPC (e.g.
|
SAVED
The RPC (e.g.
|
SUCCESS
The request succeeded
|
TIMED_OUT
Overlay reached the maximum timeout and closed.
|
TOO_MANY_APPLICATIONS
Specified application name is already associated with an active interface
registration.
|
TOO_MANY_PENDING_REQUESTS
There are too many requests pending (means that the response has not been
delivered yet).
|
TRUNCATED_DATA
The RPC (e.g.
|
UNSUPPORTED_REQUEST
The request is not supported by SDL
|
UNSUPPORTED_RESOURCE
A button that was requested for subscription is not supported on the
currently connected SDL platform.
|
UNSUPPORTED_VERSION
The requested language is currently not supported.
|
USER_DISALLOWED
RPC is included in a functional group explicitly blocked by the user.
|
VEHICLE_DATA_NOT_ALLOWED
The user has turned off access to vehicle data, and it is globally unavailable to mobile applications.
|
VEHICLE_DATA_NOT_AVAILABLE
The requested vehicle data is not available on this vehicle or is not published.
|
WARNINGS
The RPC (e.g.
|
WRONG_LANGUAGE
The request cannot be executed because no application interface has been
registered via
RegisterAppInterface
|
| Modifier and Type | Method and Description |
|---|---|
static Result |
valueForString(String value)
Convert String to Result
|
static Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Result SUCCESS
public static final Result INVALID_DATA
The data sent is invalid. For example:
public static final Result UNSUPPORTED_REQUEST
public static final Result OUT_OF_MEMORY
public static final Result TOO_MANY_PENDING_REQUESTS
public static final Result CHAR_LIMIT_EXCEEDED
public static final Result INVALID_ID
One of the provided IDs is not valid. For example:
public static final Result DUPLICATE_NAME
public static final Result TOO_MANY_APPLICATIONS
public static final Result APPLICATION_REGISTERED_ALREADY
public static final Result UNSUPPORTED_VERSION
public static final Result WRONG_LANGUAGE
public static final Result APPLICATION_NOT_REGISTERED
public static final Result IN_USE
public static final Result VEHICLE_DATA_NOT_ALLOWED
public static final Result VEHICLE_DATA_NOT_AVAILABLE
public static final Result REJECTED
public static final Result ABORTED
public static final Result IGNORED
public static final Result UNSUPPORTED_RESOURCE
public static final Result FILE_NOT_FOUND
public static final Result GENERIC_ERROR
public static final Result DISALLOWED
public static final Result USER_DISALLOWED
public static final Result TIMED_OUT
public static final Result CANCEL_ROUTE
public static final Result TRUNCATED_DATA
public static final Result RETRY
public static final Result WARNINGS
public static final Result SAVED
public static final Result INVALID_CERT
public static final Result EXPIRED_CERT
public static final Result RESUME_FAILED
public static final Result DATA_NOT_AVAILABLE
public static final Result READ_ONLY
public static final Result CORRUPTED_DATA
public static final Result ENCRYPTION_NEEDED
public static Result[] values()
for (Result c : Result.values()) System.out.println(c);
public static Result 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 null