private static enum RecordFilter.Operator extends Enum<RecordFilter.Operator>
Enum Constant and Description |
---|
DOUBLE_EQUALS |
EQUAL |
GREATER |
GREATER_OR_EQUAL |
LESS |
LESS_OR_EQUAL |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static RecordFilter.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecordFilter.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecordFilter.Operator EQUAL
public static final RecordFilter.Operator DOUBLE_EQUALS
public static final RecordFilter.Operator GREATER
public static final RecordFilter.Operator GREATER_OR_EQUAL
public static final RecordFilter.Operator LESS
public static final RecordFilter.Operator LESS_OR_EQUAL
public static RecordFilter.Operator[] values()
for (RecordFilter.Operator c : RecordFilter.Operator.values()) System.out.println(c);
public static RecordFilter.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 String toString()
toString
in class Enum<RecordFilter.Operator>
Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.