public static enum CircularReferenceDetector.ReferenceMatchingMode extends Enum<CircularReferenceDetector.ReferenceMatchingMode>
Enum Constant and Description |
---|
EQUALITY_OPERATOR
Compares objects using the
== operator. |
EQUALS_METHOD
Compares objects using Object.equals(Object).
|
Modifier and Type | Method and Description |
---|---|
static CircularReferenceDetector.ReferenceMatchingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CircularReferenceDetector.ReferenceMatchingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CircularReferenceDetector.ReferenceMatchingMode EQUALITY_OPERATOR
==
operator.public static final CircularReferenceDetector.ReferenceMatchingMode EQUALS_METHOD
public static CircularReferenceDetector.ReferenceMatchingMode[] values()
for (CircularReferenceDetector.ReferenceMatchingMode c : CircularReferenceDetector.ReferenceMatchingMode.values()) System.out.println(c);
public static CircularReferenceDetector.ReferenceMatchingMode 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 © 2016. All rights reserved.