Package com._1c.g5.v8.dt.migration
Enum Class MigrationPhase
- All Implemented Interfaces:
Serializable
,Comparable<MigrationPhase>
,Constable
Enumeration of supported data migration phases.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionFinishing of the migration process.Migration after the BM start.Migration of EDT internal data before the BM is started.Preparation of the migration process.Migration of EDT resources/sources. -
Method Summary
Modifier and TypeMethodDescriptionstatic MigrationPhase
Returns the enum constant of this class with the specified name.static MigrationPhase[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PREPARATION
Preparation of the migration process. -
RESOURCE_STORE_MIGRATION
Migration of EDT resources/sources. -
INTERNAL_STORE_MIGRATION_PREPARATION
Migration of EDT internal data before the BM is started. -
INTERNAL_STORE_MIGRATION
Migration after the BM start. -
FINISH
Finishing of the migration process.
-
-
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
-