public enum NaiveEqualityResult extends Enum<NaiveEqualityResult>
| Enum Constant and Description |
|---|
CONTINUE |
RETURN_FALSE |
RETURN_TRUE |
| Modifier and Type | Method and Description |
|---|---|
static NaiveEqualityResult |
checkEquality(Object obj1,
Object obj2) |
static NaiveEqualityResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NaiveEqualityResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NaiveEqualityResult CONTINUE
public static final NaiveEqualityResult RETURN_FALSE
public static final NaiveEqualityResult RETURN_TRUE
public static NaiveEqualityResult[] values()
for (NaiveEqualityResult c : NaiveEqualityResult.values()) System.out.println(c);
public static NaiveEqualityResult 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 nullpublic static NaiveEqualityResult checkEquality(Object obj1, Object obj2)
Copyright © 2018 Bonitasoft S.A.. All rights reserved.