public enum LogicOperations extends java.lang.Enum<LogicOperations> implements ErrorMessanger
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
errorMessage(Value compared,
java.lang.String with) |
abstract boolean |
logicalExpresion(java.lang.Double a,
java.lang.Double b) |
abstract boolean |
logicalExpresion(java.lang.Integer a,
java.lang.Integer b) |
java.lang.String |
toString() |
static LogicOperations |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LogicOperations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogicOperations GT
public static final LogicOperations GTE
public static final LogicOperations LT
public static final LogicOperations LTE
public static final LogicOperations EQ
public static final LogicOperations NEQ
public static LogicOperations[] values()
for (LogicOperations c : LogicOperations.values()) System.out.println(c);
public static LogicOperations 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 abstract boolean logicalExpresion(java.lang.Double a,
java.lang.Double b)
public abstract boolean logicalExpresion(java.lang.Integer a,
java.lang.Integer b)
public java.lang.String toString()
toString in class java.lang.Enum<LogicOperations>public java.lang.String errorMessage(Value compared, java.lang.String with)
errorMessage in interface ErrorMessanger