public static enum SpringTernaryCheck.EqualsTest extends Enum<SpringTernaryCheck.EqualsTest>
| Enum Constant and Description |
|---|
ANY
Equals checks can be used for any test.
|
NEVER
Equals tests can never be used.
|
NEVER_FOR_NULLS
Equals tests can never be used for
null checks. |
| Modifier and Type | Method and Description |
|---|---|
static SpringTernaryCheck.EqualsTest |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpringTernaryCheck.EqualsTest[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpringTernaryCheck.EqualsTest ANY
public static final SpringTernaryCheck.EqualsTest NEVER
public static final SpringTernaryCheck.EqualsTest NEVER_FOR_NULLS
null checks.public static SpringTernaryCheck.EqualsTest[] values()
for (SpringTernaryCheck.EqualsTest c : SpringTernaryCheck.EqualsTest.values()) System.out.println(c);
public static SpringTernaryCheck.EqualsTest 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 © 2019. All rights reserved.