public static enum Range.Operator extends Enum<Range.Operator>
| Enum Constant and Description |
|---|
EQUALS |
FIRST |
GREATER_THAN |
LAST |
LESS_THAN |
NONE |
| Modifier and Type | Method and Description |
|---|---|
boolean |
compare(Integer a,
Integer b,
Integer c,
Integer d) |
static Range.Operator |
invert(Range.Operator rm) |
static Range.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Range.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Range.Operator EQUALS
public static final Range.Operator LESS_THAN
public static final Range.Operator GREATER_THAN
public static final Range.Operator FIRST
public static final Range.Operator LAST
public static final Range.Operator NONE
public static Range.Operator[] values()
for (Range.Operator c : Range.Operator.values()) System.out.println(c);
public static Range.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 nullpublic static Range.Operator invert(Range.Operator rm)
Copyright © 2017. All rights reserved.