Package com._1c.g5.v8.dt.migration
Enum MigrationPhase
- java.lang.Object
-
- java.lang.Enum<MigrationPhase>
-
- com._1c.g5.v8.dt.migration.MigrationPhase
-
- All Implemented Interfaces:
Serializable
,Comparable<MigrationPhase>
public enum MigrationPhase extends Enum<MigrationPhase>
Enumeration of supported data migration phases.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FINISH
Finishing of the migration process.INTERNAL_STORE_MIGRATION
Migration after the BM start.INTERNAL_STORE_MIGRATION_PREPARATION
Migration of EDT internal data before the BM is started.PREPARATION
Preparation of the migration process.RESOURCE_STORE_MIGRATION
Migration of EDT resources/sources.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MigrationPhase
valueOf(String name)
Returns the enum constant of this type with the specified name.static MigrationPhase[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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 nameNullPointerException
- if the argument is null
-
-