Package com.gemalto.mfs.mwsdk.sdkconfig
Enum Class SDKSetupProgressState
- All Implemented Interfaces:
Serializable,Comparable<SDKSetupProgressState>,Constable
Gives Progress state during SDK initialization process.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIndicates that the Database Migration Update has started.Indicates that the Digitalized Card Manager Module's initialization has completed.Indicates that the Digitalized Card Manager Module's initialization has started.Indicates that the Payment Module's initialization has completed.Indicates that the Payment Module's initialization has started.Indicates that the Provisioning Module's initialization has completed.Indicates that the Provisioning Module's initialization has started.Indicates that the SDK initialization has completed.Indicates that the SDK initialization has started.Indicates that the SDK Upgrade has completed.Indicates that the SDK Upgrade has started. -
Method Summary
Modifier and TypeMethodDescriptionstatic SDKSetupProgressStateReturns the enum constant of this class with the specified name.static SDKSetupProgressState[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SDK_INIT_STARTED
Indicates that the SDK initialization has started. -
DCM_MODULE_INIT_STARTED
Indicates that the Digitalized Card Manager Module's initialization has started. -
DCM_MODULE_INIT_COMPLETED
Indicates that the Digitalized Card Manager Module's initialization has completed. -
SDK_UPGRADE_STARTED
Indicates that the SDK Upgrade has started. -
SDK_UPGRADE_COMPLETED
Indicates that the SDK Upgrade has completed. -
PROVISION_MODULE_INIT_STARTED
Indicates that the Provisioning Module's initialization has started. -
PROVISION_MODULE_INIT_COMPLETED
Indicates that the Provisioning Module's initialization has completed. -
PAYMENT_MODULE_INIT_STARTED
Indicates that the Payment Module's initialization has started. -
PAYMENT_MODULE_INIT_COMPLETED
Indicates that the Payment Module's initialization has completed. -
DB_MIGRATION_UPDATE
Indicates that the Database Migration Update has started. -
SDK_INIT_COMPLETED
Indicates that the SDK initialization has completed.
-
-
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
-