Enum IMergeViewer.MergeViewerSide
- java.lang.Object
-
- java.lang.Enum<IMergeViewer.MergeViewerSide>
-
- org.eclipse.emf.compare.rcp.ui.mergeviewer.IMergeViewer.MergeViewerSide
-
- All Implemented Interfaces:
Serializable
,Comparable<IMergeViewer.MergeViewerSide>
- Enclosing interface:
- IMergeViewer
public static enum IMergeViewer.MergeViewerSide extends Enum<IMergeViewer.MergeViewerSide>
An enum that represents the side of the viewer and provides utilty methods to manage sides.- Since:
- 4.0
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description DifferenceSource
convertToDifferenceSource()
Converts this side to DifferenceSource.static IMergeViewer.MergeViewerSide
getValueFrom(DifferenceSource source)
Get the side value from the givenDifferenceSource
.IMergeViewer.MergeViewerSide
opposite()
Get the opposite side of this side.static IMergeViewer.MergeViewerSide
valueOf(String name)
Returns the enum constant of this type with the specified name.static IMergeViewer.MergeViewerSide[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LEFT
public static final IMergeViewer.MergeViewerSide LEFT
Values: left side, right side, ancestor side.
-
RIGHT
public static final IMergeViewer.MergeViewerSide RIGHT
-
ANCESTOR
public static final IMergeViewer.MergeViewerSide ANCESTOR
-
-
Method Detail
-
values
public static IMergeViewer.MergeViewerSide[] 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 (IMergeViewer.MergeViewerSide c : IMergeViewer.MergeViewerSide.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IMergeViewer.MergeViewerSide 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
-
opposite
public IMergeViewer.MergeViewerSide opposite()
Get the opposite side of this side.- Returns:
- the opposite side of this side.
-
getValueFrom
public static IMergeViewer.MergeViewerSide getValueFrom(DifferenceSource source)
Get the side value from the givenDifferenceSource
.- Parameters:
source
- the given DifferenceSource.- Returns:
- the side value from the given DifferenceSource.
-
convertToDifferenceSource
public DifferenceSource convertToDifferenceSource()
Converts this side to DifferenceSource.- Returns:
- the DifferenceSource equivalent to this side.
-
-