Package org.eclipse.emf.spi.cdo
Enum DefaultCDOMerger.ResolutionPreference
- java.lang.Object
- 
- java.lang.Enum<DefaultCDOMerger.ResolutionPreference>
- 
- org.eclipse.emf.spi.cdo.DefaultCDOMerger.ResolutionPreference
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<DefaultCDOMerger.ResolutionPreference>
 - Enclosing class:
- DefaultCDOMerger
 
 public static enum DefaultCDOMerger.ResolutionPreference extends java.lang.Enum<DefaultCDOMerger.ResolutionPreference> Enumerates the possible resolution preferences that can be used with aDefaultCDOMerger.- Since:
- 4.2
- Author:
- Eike Stepper
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description CHANGE_OVER_DETACHDeprecated.DETACH_OVER_CHANGEDeprecated.NONESOURCE_OVER_TARGETDeprecated.TARGET_OVER_SOURCEDeprecated.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static DefaultCDOMerger.ResolutionPreferencevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DefaultCDOMerger.ResolutionPreference[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
NONEpublic static final DefaultCDOMerger.ResolutionPreference NONE 
 - 
SOURCE_OVER_TARGET@Deprecated public static final DefaultCDOMerger.ResolutionPreference SOURCE_OVER_TARGET Deprecated.
 - 
TARGET_OVER_SOURCE@Deprecated public static final DefaultCDOMerger.ResolutionPreference TARGET_OVER_SOURCE Deprecated.
 - 
DETACH_OVER_CHANGE@Deprecated public static final DefaultCDOMerger.ResolutionPreference DETACH_OVER_CHANGE Deprecated.
 - 
CHANGE_OVER_DETACH@Deprecated public static final DefaultCDOMerger.ResolutionPreference CHANGE_OVER_DETACH Deprecated.
 
- 
 - 
Method Detail- 
valuespublic static DefaultCDOMerger.ResolutionPreference[] 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 (DefaultCDOMerger.ResolutionPreference c : DefaultCDOMerger.ResolutionPreference.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static DefaultCDOMerger.ResolutionPreference valueOf(java.lang.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:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-