public enum MergeOperation extends Enum<MergeOperation>
| Enum Constant and Description | 
|---|
| MARK_AS_MERGEOnly mark the diff as merged without copying anything. | 
| MERGEDo a regular merge with copy. | 
| Modifier and Type | Method and Description | 
|---|---|
| static MergeOperation | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static MergeOperation[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final MergeOperation MARK_AS_MERGE
public static final MergeOperation MERGE
public static MergeOperation[] values()
for (MergeOperation c : MergeOperation.values()) System.out.println(c);
public static MergeOperation valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null
Copyright (c) 2006, 2015 Obeo and others. All rights reserved.