public enum ConflictResolutionAction extends Enum<ConflictResolutionAction>
| Enum Constant and Description |
|---|
ALL |
FIRSTMATCH |
IGNORE |
LASTMATCH |
| Modifier and Type | Method and Description |
|---|---|
static ConflictResolutionAction |
fromString(String value) |
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 nullpublic static ConflictResolutionAction fromString(String value)
Copyright © 2010–2018 The Apache Software Foundation. All rights reserved.