public enum ExistingOxygenTCsProcessingMode extends Enum<ExistingOxygenTCsProcessingMode>
Decides whether to accept or ignore the oxygen track changes if they already exists in the merge input.
Note: This setting only has effect with the result type ThreeWayMergeResultType.THREE_WAY_OXYGEN_TRACK_CHANGES
.
The ExistingOxygenTCsProcessingMode.ACCEPT
setting is used by default.
Enum Constant and Description |
---|
ACCEPT
Accept already existing oxygen track changes.
|
IGNORE
Ignore already existing oxygen track changes and keep them as it is in the final three way track changes output.
|
Modifier and Type | Method and Description |
---|---|
static ExistingOxygenTCsProcessingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExistingOxygenTCsProcessingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExistingOxygenTCsProcessingMode ACCEPT
Accept already existing oxygen track changes.
public static final ExistingOxygenTCsProcessingMode IGNORE
Ignore already existing oxygen track changes and keep them as it is in the final three way track changes output.
public static ExistingOxygenTCsProcessingMode[] values()
for (ExistingOxygenTCsProcessingMode c : ExistingOxygenTCsProcessingMode.values()) System.out.println(c);
public static ExistingOxygenTCsProcessingMode 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 nullCopyright © 2023 Deltaman Group Ltd. All Rights Reserved.