public static enum DHXRule.DHXOperator extends java.lang.Enum<DHXRule.DHXOperator>
Enum Constant and Description |
---|
Equals
==
|
Greater
>
|
GreaterOrEqual
>=
|
GreaterOrIdentical
>==
|
Identical
===
|
Lower
<
|
LowerOrEqual
<=
|
LowerOrIdentical
<==
|
NotEquals
!=
|
NotIdentical
!==
|
Modifier and Type | Method and Description |
---|---|
static DHXRule.DHXOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DHXRule.DHXOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DHXRule.DHXOperator Equals
public static final DHXRule.DHXOperator NotEquals
public static final DHXRule.DHXOperator Identical
public static final DHXRule.DHXOperator NotIdentical
public static final DHXRule.DHXOperator Greater
public static final DHXRule.DHXOperator GreaterOrEqual
public static final DHXRule.DHXOperator Lower
public static final DHXRule.DHXOperator LowerOrEqual
public static final DHXRule.DHXOperator GreaterOrIdentical
public static final DHXRule.DHXOperator LowerOrIdentical
public static DHXRule.DHXOperator[] values()
for (DHXRule.DHXOperator c : DHXRule.DHXOperator.values()) System.out.println(c);
public static DHXRule.DHXOperator valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null