Enum IMergeViewer.MergeViewerSide
java.lang.Object
java.lang.Enum<IMergeViewer.MergeViewerSide>
org.eclipse.emf.compare.rcp.ui.mergeviewer.IMergeViewer.MergeViewerSide
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<IMergeViewer.MergeViewerSide>,java.lang.constant.Constable
- Enclosing interface:
- IMergeViewer
public static enum IMergeViewer.MergeViewerSide extends java.lang.Enum<IMergeViewer.MergeViewerSide>
An enum that represents the side of the viewer and provides utilty methods to manage sides.
- Since:
- 4.0
-
Nested Class Summary
-
Enum Constant Summary
-
Method Summary
Modifier and Type Method Description DifferenceSourceconvertToDifferenceSource()Converts this side to DifferenceSource.static IMergeViewer.MergeViewerSidegetValueFrom(DifferenceSource source)Get the side value from the givenDifferenceSource.IMergeViewer.MergeViewerSideopposite()Get the opposite side of this side.static IMergeViewer.MergeViewerSidevalueOf(java.lang.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 Details
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 namejava.lang.NullPointerException- if the argument is null
-
opposite
Get the opposite side of this side.- Returns:
- the opposite side of this side.
-
getValueFrom
Get the side value from the givenDifferenceSource.- Parameters:
source- the given DifferenceSource.- Returns:
- the side value from the given DifferenceSource.
-
convertToDifferenceSource
Converts this side to DifferenceSource.- Returns:
- the DifferenceSource equivalent to this side.
-