public enum FlowRecordFilterOperator extends Enum<FlowRecordFilterOperator>
Java class for FlowRecordFilterOperator.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="FlowRecordFilterOperator">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="EqualTo"/>
<enumeration value="NotEqualTo"/>
<enumeration value="GreaterThan"/>
<enumeration value="LessThan"/>
<enumeration value="GreaterThanOrEqualTo"/>
<enumeration value="LessThanOrEqualTo"/>
<enumeration value="StartsWith"/>
<enumeration value="EndsWith"/>
<enumeration value="Contains"/>
<enumeration value="IsNull"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CONTAINS |
ENDS_WITH |
EQUAL_TO |
GREATER_THAN |
GREATER_THAN_OR_EQUAL_TO |
IS_NULL |
LESS_THAN |
LESS_THAN_OR_EQUAL_TO |
NOT_EQUAL_TO |
STARTS_WITH |
| Modifier and Type | Method and Description |
|---|---|
static FlowRecordFilterOperator |
fromValue(String v) |
String |
value() |
static FlowRecordFilterOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowRecordFilterOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowRecordFilterOperator EQUAL_TO
public static final FlowRecordFilterOperator NOT_EQUAL_TO
public static final FlowRecordFilterOperator GREATER_THAN
public static final FlowRecordFilterOperator LESS_THAN
public static final FlowRecordFilterOperator GREATER_THAN_OR_EQUAL_TO
public static final FlowRecordFilterOperator LESS_THAN_OR_EQUAL_TO
public static final FlowRecordFilterOperator STARTS_WITH
public static final FlowRecordFilterOperator ENDS_WITH
public static final FlowRecordFilterOperator CONTAINS
public static final FlowRecordFilterOperator IS_NULL
public static FlowRecordFilterOperator[] values()
for (FlowRecordFilterOperator c : FlowRecordFilterOperator.values()) System.out.println(c);
public static FlowRecordFilterOperator 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 value()
public static FlowRecordFilterOperator fromValue(String v)
Copyright © 2016. All rights reserved.