24 package org.lightjason.agentspeak.language.execution.expression;
84 return (
this == AND ) || (
this == OR ) || (
this == XOR ) || (
this == NEGATION );
94 return (
this == PLUS ) || (
this == MINUS ) || (
this == MULTIPLY ) || (
this == DIVIDE ) || (
this == MODULO ) || (
this == POWER );
104 return (
this == EQUAL ) || (
this == NOTEQUAL );
114 return (
this == LESS ) || (
this == LESSEQUAL ) || (
this == GREATER ) || (
this == GREATEREQUAL );
124 return (
this == PLUS ) || (
this == MINUS );
134 return (
this == MULTIPLY ) || (
this == DIVIDE ) || (
this == MODULO );
144 return this == POWER;
154 return this != NEGATION;
164 return this == NEGATION;
final boolean isLogical()
check of a logical operator
EOperator(final String p_name)
ctor
final boolean isRelational()
check of a relational operator
final boolean isBinary()
check of a binary operator
final boolean isComparable()
check of a comparable operator
final boolean isAdditive()
check of a additive operator
final boolean isNumerical()
check of a numeric operator
final boolean isMultiplicative()
check of a multiplicative operator
final boolean isPower()
check of a power operator
final boolean isUnary()
check of a unary operator
final String m_name
text name of the enum