fr.expression4j.basic.impl
Class OperatorUnaryPlus

java.lang.Object
  extended by fr.expression4j.basic.impl.OperatorUnaryPlus
All Implemented Interfaces:
Operator

Deprecated.

public class OperatorUnaryPlus
extends java.lang.Object
implements Operator

Author:
SGINER

Field Summary
 
Fields inherited from interface fr.expression4j.basic.Operator
OPERATOR_DIVIDE, OPERATOR_MINUS, OPERATOR_MULTIPLY, OPERATOR_PLUS, OPERATOR_POW, OPERATOR_UNARY_MINUS, OPERATOR_UNARY_PLUS
 
Constructor Summary
OperatorUnaryPlus()
          Deprecated.  
 
Method Summary
 java.lang.String getName()
          Deprecated. Get the name of the operator.
 java.lang.String getSymbol()
          Deprecated. Get the symbol associated to the operator (like +, -, AND ...).
 boolean isUnary()
          Deprecated. Tell if operator is an unary operator.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OperatorUnaryPlus

public OperatorUnaryPlus()
Deprecated. 
Method Detail

isUnary

public boolean isUnary()
Deprecated. 
Description copied from interface: Operator
Tell if operator is an unary operator.

Specified by:
isUnary in interface Operator
Returns:
true if operator is an unary operator, false otherwise.

getName

public java.lang.String getName()
Deprecated. 
Description copied from interface: Operator
Get the name of the operator.

Specified by:
getName in interface Operator
Returns:
the name of the operator.

getSymbol

public java.lang.String getSymbol()
Deprecated. 
Description copied from interface: Operator
Get the symbol associated to the operator (like +, -, AND ...). This symbol is used by the parser to identify the operator.

Specified by:
getSymbol in interface Operator
Returns:
the symbol associated to the operator.