Enum IDifferenceGroupProvider.ComparisonType
- java.lang.Object
-
- java.lang.Enum<IDifferenceGroupProvider.ComparisonType>
-
- org.eclipse.emf.compare.rcp.ui.structuremergeviewer.groups.IDifferenceGroupProvider.ComparisonType
-
- All Implemented Interfaces:
Serializable
,Comparable<IDifferenceGroupProvider.ComparisonType>
- Enclosing interface:
- IDifferenceGroupProvider
public static enum IDifferenceGroupProvider.ComparisonType extends Enum<IDifferenceGroupProvider.ComparisonType>
Type of comparison aIDifferenceGroupProvider
can handle.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IDifferenceGroupProvider.ComparisonType
valueOf(String name)
Returns the enum constant of this type with the specified name.static IDifferenceGroupProvider.ComparisonType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
THREE_WAY
public static final IDifferenceGroupProvider.ComparisonType THREE_WAY
Only three way comparison.
-
TWO_WAY
public static final IDifferenceGroupProvider.ComparisonType TWO_WAY
Only two way comparison.
-
BOTH
public static final IDifferenceGroupProvider.ComparisonType BOTH
Can handle both comparison type.
-
-
Method Detail
-
values
public static IDifferenceGroupProvider.ComparisonType[] 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 (IDifferenceGroupProvider.ComparisonType c : IDifferenceGroupProvider.ComparisonType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IDifferenceGroupProvider.ComparisonType 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
-
-