Class BitwiseNot
- java.lang.Object
 - 
- com.inductiveautomation.ignition.common.expressions.AbstractExpression
 - 
- com.inductiveautomation.ignition.common.expressions.BitwiseNot
 
 
 
- 
- All Implemented Interfaces:
 Expression
public class BitwiseNot extends AbstractExpression
This class allows for the execution of the unary bitwise complement (aka NOT) operator in Expression Language. 
- 
- 
Field Summary
- 
Fields inherited from class com.inductiveautomation.ignition.common.expressions.AbstractExpression
children, context, updateListener 
 - 
 
- 
Constructor Summary
Constructors Constructor Description BitwiseNot()BitwiseNot(Expression e)BitwiseNot Constructor 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description QualifiedValueexecute()BitwiseNot.execute()java.lang.StringgetOpName()Return a human-readable name for the operation that this expression performsjava.lang.Class<?>getType()Return the type that this expression will return- 
Methods inherited from class com.inductiveautomation.ignition.common.expressions.AbstractExpression
connect, disconnect, getChildren, setChildren, shutdown, startup 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
BitwiseNot
public BitwiseNot(Expression e)
BitwiseNot Constructor- Parameters:
 e- an Expression type- Throws:
 java.lang.Exception- if the value is not a valid numeric type
 
- 
BitwiseNot
public BitwiseNot()
 
 - 
 
- 
Method Detail
- 
execute
@Nonnull public QualifiedValue execute() throws ExpressionException
BitwiseNot.execute()- Returns:
 QualifiedValue- Throws:
 ExpressionException- ifQualityValueis not valid type.
 
- 
getType
public java.lang.Class<?> getType()
Description copied from interface:ExpressionReturn the type that this expression will return 
- 
getOpName
public java.lang.String getOpName()
Description copied from interface:ExpressionReturn a human-readable name for the operation that this expression performs 
 - 
 
 -