private static enum EqualsTester.NotAnInstance extends java.lang.Enum<EqualsTester.NotAnInstance>
Enum Constant and Description |
---|
EQUAL_TO_NOTHING |
Modifier and Type | Method and Description |
---|---|
static EqualsTester.NotAnInstance |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EqualsTester.NotAnInstance[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EqualsTester.NotAnInstance EQUAL_TO_NOTHING
public static EqualsTester.NotAnInstance[] values()
for (EqualsTester.NotAnInstance c : EqualsTester.NotAnInstance.values()) System.out.println(c);
public static EqualsTester.NotAnInstance 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