public enum FieldOperator extends Enum<FieldOperator>
Enum Constant and Description |
---|
EQUAL
Equal.
|
GREATER_OR_EQUAL_THAN
Greater than or equal.
|
GREATER_THAN
Greater than.
|
IN
In operator.
|
LESS_OR_EQUAL_THAN
Less than or equal.
|
LESS_THAN
Less than.
|
LIKE
Like.
|
NOT_EQUAL
Not equal.
|
Modifier and Type | Method and Description |
---|---|
String |
getOperatorAsString()
This returns the string representing the field operator.
|
static FieldOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldOperator EQUAL
public static final FieldOperator GREATER_THAN
public static final FieldOperator LESS_THAN
public static final FieldOperator GREATER_OR_EQUAL_THAN
public static final FieldOperator LESS_OR_EQUAL_THAN
public static final FieldOperator LIKE
public static final FieldOperator NOT_EQUAL
public static final FieldOperator IN
public static FieldOperator[] values()
for (FieldOperator c : FieldOperator.values()) System.out.println(c);
public static FieldOperator 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 getOperatorAsString()
Copyright (c) 2014-2021 All Rights Reserved by the RWS Group for and on behalf of its affiliates and subsidiaries