public enum LogicalOperator extends Enum<LogicalOperator>
Enum Constant and Description |
---|
EQUAL |
GREATER |
GREATER_OR_EQUAL |
LESS_OR_EQUAL |
LESS_THAN |
Modifier and Type | Method and Description |
---|---|
String |
getSymbol() |
abstract boolean |
matchResult(int result) |
static LogicalOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogicalOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogicalOperator LESS_THAN
public static final LogicalOperator LESS_OR_EQUAL
public static final LogicalOperator EQUAL
public static final LogicalOperator GREATER_OR_EQUAL
public static final LogicalOperator GREATER
public static LogicalOperator[] values()
for (LogicalOperator c : LogicalOperator.values()) System.out.println(c);
public static LogicalOperator 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 getSymbol()
public abstract boolean matchResult(int result)
Copyright © 2001–2022 EasyMock contributors. All rights reserved.