public enum Op extends Enum<Op>
| Modifier and Type | Class and Description |
|---|---|
static class |
Op.Deserializer |
| Enum Constant and Description |
|---|
CONTAINS |
CONTAINS_IGNORE_CASE |
EQUALS |
EQUALS_IGNORE_CASE |
GREATER_THAN |
GREATER_THAN_OR_EQUALS |
IN |
LESS_THAN |
LESS_THAN_OR_EQUALS |
MATCHES |
NOT_CONTAINS |
NOT_EQUALS |
NOT_IN |
NOT_MATCHES |
| Modifier and Type | Method and Description |
|---|---|
String |
getLabel() |
String |
getOperator() |
static Op |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Op[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Op CONTAINS
public static final Op CONTAINS_IGNORE_CASE
public static final Op EQUALS
public static final Op EQUALS_IGNORE_CASE
public static final Op GREATER_THAN
public static final Op GREATER_THAN_OR_EQUALS
public static final Op IN
public static final Op LESS_THAN
public static final Op LESS_THAN_OR_EQUALS
public static final Op MATCHES
public static final Op NOT_CONTAINS
public static final Op NOT_EQUALS
public static final Op NOT_IN
public static final Op NOT_MATCHES
public static Op[] values()
for (Op c : Op.values()) System.out.println(c);
public static Op 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 getLabel()
public String getOperator()
Copyright © 2016–2021 Red Hat. All rights reserved.