public static enum EqualsHelper.MapValueComparison extends Enum<EqualsHelper.MapValueComparison>
map comparisons
.Enum Constant and Description |
---|
EQUAL
The key was present in both maps and the values were equal
|
LEFT_ONLY
The key was only present in the left map
|
NOT_EQUAL
The key was present in both maps but not equal
|
RIGHT_ONLY
The key was only present in the right map
|
Modifier and Type | Method and Description |
---|---|
static EqualsHelper.MapValueComparison |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EqualsHelper.MapValueComparison[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EqualsHelper.MapValueComparison LEFT_ONLY
public static final EqualsHelper.MapValueComparison RIGHT_ONLY
public static final EqualsHelper.MapValueComparison EQUAL
public static final EqualsHelper.MapValueComparison NOT_EQUAL
public static EqualsHelper.MapValueComparison[] values()
for (EqualsHelper.MapValueComparison c : EqualsHelper.MapValueComparison.values()) System.out.println(c);
public static EqualsHelper.MapValueComparison 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 © 2005–2020 Alfresco Software. All rights reserved.