Package com.zebra.barcode.sdk.sms
Enum Class ConfigurationUpdateData.Status
java.lang.Object
java.lang.Enum<ConfigurationUpdateData.Status>
com.zebra.barcode.sdk.sms.ConfigurationUpdateData.Status
- All Implemented Interfaces:
Serializable
,Comparable<ConfigurationUpdateData.Status>
,Constable
- Enclosing class:
- ConfigurationUpdateData
These constants are defined to represent result codes that can be returned by SDK API functions.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionConfig update is failed due to invalid config fileConfig update is failed due to invalid config fileA particular API function has completed unsuccessfully.A particular API function has completed unsuccessfully due to invalid input and/or output parameters.A particular API function has completed unsuccessfully due to unsupported opcode.A particular API function has completed unsuccessfully due to expiration of a response timeout during communication with a particular scanner.Scale is not available in the specified scanner.Scanner that trying to establish the connection is already activeA particular API function has completed unsuccessfully because a specified scanner was not active.A particular API function has completed unsuccessfully because a specified scanner was not available.A particular API function has completed successfully. -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static ConfigurationUpdateData.Status[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SUCCESS
A particular API function has completed successfully. -
FAILURE
A particular API function has completed unsuccessfully. -
SCANNER_NOT_AVAILABLE
A particular API function has completed unsuccessfully because a specified scanner was not available. -
SCANNER_NOT_ACTIVE
A particular API function has completed unsuccessfully because a specified scanner was not active. -
INVALID_PARAMETER
A particular API function has completed unsuccessfully due to invalid input and/or output parameters. -
RESPONSE_TIME_OUT
A particular API function has completed unsuccessfully due to expiration of a response timeout during communication with a particular scanner. -
OPCODE_NOT_SUPPORTED
A particular API function has completed unsuccessfully due to unsupported opcode. -
SCANNER_ALREADY_ACTIVE
Scanner that trying to establish the connection is already active -
SCALE_NOT_PRESENTED
Scale is not available in the specified scanner. -
CONFIG_UPDATE_INVALID_CONFIG_FILE
Config update is failed due to invalid config file -
CONFIG_UPDATE_INCOMPATIBLE_CONFIG_FILE
Config update is failed due to invalid config file
-
-
Field Details
-
value
public int value
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-