public enum LogicalOperator extends java.lang.Enum<LogicalOperator>
Enum Constant | Description |
---|---|
EQUAL |
|
GREATER |
|
GREATER_OR_EQUAL |
|
LESS_OR_EQUAL |
|
LESS_THAN |
Modifier and Type | Method | Description |
---|---|---|
java.lang.String |
getSymbol() |
|
abstract boolean |
matchResult(int result) |
|
static LogicalOperator |
valueOf(java.lang.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(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()
public abstract boolean matchResult(int result)
Copyright © 2001-2019 EasyMock contributors. This documentation is provided under the terms of the Apache 2 licence.