public enum CompareToOperator extends Enum<CompareToOperator>
| Enum Constant and Description |
|---|
EQUALS
Equals compare to operator.
|
GREATER_THAN
Greater than compare to operator.
|
GREATER_THAN_OR_EQUALS
Greater than or equals compare to operator.
|
LESS_THAN
Less than compare to operator.
|
LESS_THAN_OR_EQUALS
Less than or equals compare to operator.
|
NOT_EQUALS
Not equals compare to operator.
|
| Modifier and Type | Method and Description |
|---|---|
static CompareToOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompareToOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompareToOperator EQUALS
public static final CompareToOperator NOT_EQUALS
public static final CompareToOperator LESS_THAN
public static final CompareToOperator LESS_THAN_OR_EQUALS
public static final CompareToOperator GREATER_THAN
public static final CompareToOperator GREATER_THAN_OR_EQUALS
public static CompareToOperator[] values()
for (CompareToOperator c : CompareToOperator.values()) System.out.println(c);
public static CompareToOperator 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 nullCopyright © 2011–2019 Danish Maritime Authority. All rights reserved.