public enum CompareMode extends Enum<CompareMode>
| Modifier and Type | Method and Description |
|---|---|
static CompareMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompareMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompareMode EQ
public static final CompareMode NE
public static final CompareMode LT
public static final CompareMode LTE
public static final CompareMode GT
public static final CompareMode GTE
public static final CompareMode IN
public static final CompareMode BETWEEN
public static CompareMode[] values()
for (CompareMode c : CompareMode.values()) System.out.println(c);
public static CompareMode 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 © 2022. All rights reserved.