Enum Class MultiResourceProjectLoadConverter.MidLevelCommitNeededAnswer
java.lang.Object
java.lang.Enum<MultiResourceProjectLoadConverter.MidLevelCommitNeededAnswer>
com.nomagic.magicdraw.persistence.convert.MultiResourceProjectLoadConverter.MidLevelCommitNeededAnswer
- All Implemented Interfaces:
Serializable,Comparable<MultiResourceProjectLoadConverter.MidLevelCommitNeededAnswer>,Constable
- Enclosing interface:
MultiResourceProjectLoadConverter
public static enum MultiResourceProjectLoadConverter.MidLevelCommitNeededAnswer
extends Enum<MultiResourceProjectLoadConverter.MidLevelCommitNeededAnswer>
Converter answers for necessity to do mid-level commit.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAnswer means that mid-level commit is needed.Answer means that mid-level commit is not needed, even when new profile version has removed elements.Answer means that converter does not know if migrated profile needs mid-level commit. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NEEDED
Answer means that mid-level commit is needed. -
NOT_NEEDED
Answer means that mid-level commit is not needed, even when new profile version has removed elements. -
UNKNOWN
Answer means that converter does not know if migrated profile needs mid-level commit.
-
-
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
-