public enum OPERATOR extends Enum<OPERATOR>
| Enum Constant and Description |
|---|
EQUAL |
GREATER_OR_EQUAL |
GREATER_THAN |
IS_MISSING |
IS_NOT_MISSING |
LESS_OR_EQUAL |
LESS_THAN |
NOT_EQUAL |
| Modifier and Type | Method and Description |
|---|---|
static OPERATOR |
byName(String name) |
String |
getName() |
String |
getOperator() |
static OPERATOR |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OPERATOR[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OPERATOR EQUAL
public static final OPERATOR NOT_EQUAL
public static final OPERATOR LESS_THAN
public static final OPERATOR LESS_OR_EQUAL
public static final OPERATOR GREATER_THAN
public static final OPERATOR GREATER_OR_EQUAL
public static final OPERATOR IS_MISSING
public static final OPERATOR IS_NOT_MISSING
public static OPERATOR[] values()
for (OPERATOR c : OPERATOR.values()) System.out.println(c);
public static 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 getName()
public String getOperator()
Copyright © 2001–2021 JBoss by Red Hat. All rights reserved.