public static enum DictionaryProperty.DiffType extends java.lang.Enum<DictionaryProperty.DiffType>
| Enum Constant and Description |
|---|
CONFLICT
this and that0 (a third version) have different values, as do this and that, as do that0 and that
|
CONTAINS_CONFLICT
this and that are not SettableProperties, but contain components with settable properties that have conflicts
|
CONTAINS_DIFF
this and that are not SettableProperties, but contain components with settable properties that have diffs
|
DIFF
this and that have different values
|
| Modifier and Type | Method and Description |
|---|---|
static DictionaryProperty.DiffType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DictionaryProperty.DiffType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final DictionaryProperty.DiffType DIFF
public static final DictionaryProperty.DiffType CONFLICT
public static final DictionaryProperty.DiffType CONTAINS_DIFF
public static final DictionaryProperty.DiffType CONTAINS_CONFLICT
public static DictionaryProperty.DiffType[] values()
for (DictionaryProperty.DiffType c : DictionaryProperty.DiffType.values())
System.out.println(c);
public static DictionaryProperty.DiffType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null