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