@Status(stage=DEVELOPMENT, unitTests=COMPLETE) @Review(by="Kees Schotanus", at="2009-09-28") public enum RelationalOperator extends Enum<RelationalOperator>
Enum Constant and Description |
---|
EQUAL
Equal.
|
GREATER_THAN
Greater than.
|
GREATER_THAN_OR_EQUAL
Greater than or equal.
|
LESS_THAN
Less than.
|
LESS_THAN_OR_EQUAL
Less than or equal.
|
NOT_EQUAL
Not equal.
|
Modifier and Type | Method and Description |
---|---|
String |
toString()
Creates a String representation of this RelationalOperator.
|
static RelationalOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RelationalOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RelationalOperator EQUAL
public static final RelationalOperator NOT_EQUAL
public static final RelationalOperator GREATER_THAN
public static final RelationalOperator GREATER_THAN_OR_EQUAL
public static final RelationalOperator LESS_THAN
public static final RelationalOperator LESS_THAN_OR_EQUAL
public static RelationalOperator[] values()
for (RelationalOperator c : RelationalOperator.values()) System.out.println(c);
public static RelationalOperator 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 toString()
toString
in class Enum<RelationalOperator>
Copyright © 2008–2018. All rights reserved.