CompareOperator
instead.@Deprecated @InterfaceAudience.Public public static enum CompareFilter.CompareOp extends Enum<CompareFilter.CompareOp>
CompareOperator
otherwise.
It (intentionally) has at least the below enums with same names.Enum Constant and Description |
---|
EQUAL
Deprecated.
equals
|
GREATER
Deprecated.
greater than
|
GREATER_OR_EQUAL
Deprecated.
greater than or equal to
|
LESS
Deprecated.
less than
|
LESS_OR_EQUAL
Deprecated.
less than or equal to
|
NO_OP
Deprecated.
no operation
|
NOT_EQUAL
Deprecated.
not equal
|
Modifier and Type | Method and Description |
---|---|
static CompareFilter.CompareOp |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static CompareFilter.CompareOp[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompareFilter.CompareOp LESS
public static final CompareFilter.CompareOp LESS_OR_EQUAL
public static final CompareFilter.CompareOp EQUAL
public static final CompareFilter.CompareOp NOT_EQUAL
public static final CompareFilter.CompareOp GREATER_OR_EQUAL
public static final CompareFilter.CompareOp GREATER
public static final CompareFilter.CompareOp NO_OP
public static CompareFilter.CompareOp[] values()
for (CompareFilter.CompareOp c : CompareFilter.CompareOp.values()) System.out.println(c);
public static CompareFilter.CompareOp 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 © 2007–2020 The Apache Software Foundation. All rights reserved.