Package org.eclipse.emf.spi.cdo
Enum Class DefaultCDOMerger.PerFeature.ManyValued.OccurrenceConflictPolicy
java.lang.Object
java.lang.Enum<DefaultCDOMerger.PerFeature.ManyValued.OccurrenceConflictPolicy>
org.eclipse.emf.spi.cdo.DefaultCDOMerger.PerFeature.ManyValued.OccurrenceConflictPolicy
- All Implemented Interfaces:
Serializable,Comparable<DefaultCDOMerger.PerFeature.ManyValued.OccurrenceConflictPolicy>,Constable
- Enclosing class:
DefaultCDOMerger.PerFeature.ManyValued
public static enum DefaultCDOMerger.PerFeature.ManyValued.OccurrenceConflictPolicy
extends Enum<DefaultCDOMerger.PerFeature.ManyValued.OccurrenceConflictPolicy>
Immutable policy for genuinely incompatible changes to one ancestor occurrence lineage.
- Since:
- 4.30
- Author:
- Eike Stepper
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionKeep replacement content against removal, remove placement-only mutations, and prefer target otherwise.Report every genuine incompatible occurrence change as a merge conflict.Select source for genuine replacement/placement conflicts and source's presence choice against removal.Select target for genuine replacement/placement conflicts and target's presence choice against removal. -
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
-
DEFAULT
Keep replacement content against removal, remove placement-only mutations, and prefer target otherwise. -
PREFER_SOURCE
Select source for genuine replacement/placement conflicts and source's presence choice against removal. -
PREFER_TARGET
Select target for genuine replacement/placement conflicts and target's presence choice against removal. -
FAIL
Report every genuine incompatible occurrence change as a merge conflict.
-
-
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
-