Enum SDKSetupProgressState

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<SDKSetupProgressState>

    public enum SDKSetupProgressState
    extends java.lang.Enum<SDKSetupProgressState>
    Gives Progress state during SDK initialization process.
    • Enum Constant Detail

      • SDK_INIT_STARTED

        public static final SDKSetupProgressState SDK_INIT_STARTED
        Indicates that the SDK initialization has started.
      • DCM_MODULE_INIT_STARTED

        public static final SDKSetupProgressState DCM_MODULE_INIT_STARTED
        Indicates that the Digitalized Card Manager Module's initialization has started.
      • DCM_MODULE_INIT_COMPLETED

        public static final SDKSetupProgressState DCM_MODULE_INIT_COMPLETED
        Indicates that the Digitalized Card Manager Module's initialization has completed.
      • SDK_UPGRADE_STARTED

        public static final SDKSetupProgressState SDK_UPGRADE_STARTED
        Indicates that the SDK Upgrade has started.
      • SDK_UPGRADE_COMPLETED

        public static final SDKSetupProgressState SDK_UPGRADE_COMPLETED
        Indicates that the SDK Upgrade has completed.
      • PROVISION_MODULE_INIT_STARTED

        public static final SDKSetupProgressState PROVISION_MODULE_INIT_STARTED
        Indicates that the Provisioning Module's initialization has started.
      • PROVISION_MODULE_INIT_COMPLETED

        public static final SDKSetupProgressState PROVISION_MODULE_INIT_COMPLETED
        Indicates that the Provisioning Module's initialization has completed.
      • PAYMENT_MODULE_INIT_STARTED

        public static final SDKSetupProgressState PAYMENT_MODULE_INIT_STARTED
        Indicates that the Payment Module's initialization has started.
      • PAYMENT_MODULE_INIT_COMPLETED

        public static final SDKSetupProgressState PAYMENT_MODULE_INIT_COMPLETED
        Indicates that the Payment Module's initialization has completed.
      • DB_MIGRATION_UPDATE

        public static final SDKSetupProgressState DB_MIGRATION_UPDATE
        Indicates that the Database Migration Update has started.
      • SDK_INIT_COMPLETED

        public static final SDKSetupProgressState SDK_INIT_COMPLETED
        Indicates that the SDK initialization has completed.
    • Method Detail

      • values

        public static SDKSetupProgressState[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (SDKSetupProgressState c : SDKSetupProgressState.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static SDKSetupProgressState valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null