| Enum Constant and Description |
|---|
EQ
equal to
|
GE
greater than or equal to
|
GT
greater than
|
LE
lower than or equal to
|
LT
lower than
|
NE
not equal to
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getSymbol() |
static CompareOp |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompareOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompareOp EQ
public static final CompareOp NE
public static final CompareOp LT
public static final CompareOp LE
public static final CompareOp GE
public static final CompareOp GT
public static CompareOp[] values()
for (CompareOp c : CompareOp.values()) System.out.println(c);
public static CompareOp 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 nullpublic java.lang.String getSymbol()
Copyright © 2025 Dassault Aviation. All Rights Reserved. Documentation and source under the LGPL v3 licence