Enum IStorageProviderAccessor.DiffSide
- java.lang.Object
-
- java.lang.Enum<IStorageProviderAccessor.DiffSide>
-
- org.eclipse.emf.compare.ide.ui.logical.IStorageProviderAccessor.DiffSide
-
- All Implemented Interfaces:
Serializable
,Comparable<IStorageProviderAccessor.DiffSide>
- Enclosing interface:
- IStorageProviderAccessor
public static enum IStorageProviderAccessor.DiffSide extends Enum<IStorageProviderAccessor.DiffSide>
Used by the resolution process to determine the side of the revision to fetch.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IStorageProviderAccessor.DiffSide
valueOf(String name)
Returns the enum constant of this type with the specified name.static IStorageProviderAccessor.DiffSide[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SOURCE
public static final IStorageProviderAccessor.DiffSide SOURCE
Source side. Usually denotes "left" or "local" content.
-
REMOTE
public static final IStorageProviderAccessor.DiffSide REMOTE
Remote side. Usually denotes the "right" or "reference" content for a comparison.
-
ORIGIN
public static final IStorageProviderAccessor.DiffSide ORIGIN
Origin side. Corresponds to the common ancestor of the local and remote sides.
-
-
Method Detail
-
values
public static IStorageProviderAccessor.DiffSide[] 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 (IStorageProviderAccessor.DiffSide c : IStorageProviderAccessor.DiffSide.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IStorageProviderAccessor.DiffSide 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
-
-