public enum ConflictResolutionAction extends Enum<ConflictResolutionAction>
| Enum Constant and Description |
|---|
ALL
Pull all matching objects.
|
FIRSTMATCH
Pull first matching object only.
|
IGNORE
Do nothing.
|
LASTMATCH
Pull last matching object only.
|
| Modifier and Type | Method and Description |
|---|---|
static ConflictResolutionAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConflictResolutionAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConflictResolutionAction IGNORE
public static final ConflictResolutionAction FIRSTMATCH
public static final ConflictResolutionAction LASTMATCH
public static final ConflictResolutionAction ALL
public static ConflictResolutionAction[] values()
for (ConflictResolutionAction c : ConflictResolutionAction.values()) System.out.println(c);
public static ConflictResolutionAction 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 © 2010–2016 The Apache Software Foundation. All rights reserved.