Enum MigrationPhase

    • Enum Constant Detail

      • PREPARATION

        public static final MigrationPhase PREPARATION
        Preparation of the migration process.
      • RESOURCE_STORE_MIGRATION

        public static final MigrationPhase RESOURCE_STORE_MIGRATION
        Migration of EDT resources/sources.
      • INTERNAL_STORE_MIGRATION_PREPARATION

        public static final MigrationPhase INTERNAL_STORE_MIGRATION_PREPARATION
        Migration of EDT internal data before the BM is started.
      • INTERNAL_STORE_MIGRATION

        public static final MigrationPhase INTERNAL_STORE_MIGRATION
        Migration after the BM start.
      • FINISH

        public static final MigrationPhase FINISH
        Finishing of the migration process.
    • Method Detail

      • values

        public static MigrationPhase[] 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 (MigrationPhase c : MigrationPhase.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static MigrationPhase valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null