Class BitwiseExpression
- java.lang.Object
- 
- com.inductiveautomation.ignition.common.expressions.AbstractExpression
- 
- com.inductiveautomation.ignition.common.expressions.BitwiseExpression
 
 
- 
- All Implemented Interfaces:
- Expression
 
 public class BitwiseExpression extends AbstractExpression 
- 
- 
Field SummaryFields Modifier and Type Field Description static intANDstatic intLSHIFTstatic intORstatic intRSHIFTstatic intXOR- 
Fields inherited from class com.inductiveautomation.ignition.common.expressions.AbstractExpressionchildren, context, updateListener
 
- 
 - 
Constructor SummaryConstructors Constructor Description BitwiseExpression()BitwiseExpression(Expression e1, Expression e2, int opType)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description QualifiedValueexecute()Compute and return the value of this expressionjava.lang.StringgetOpName()Return a human-readable name for the operation that this expression performsintgetOpType()java.lang.Class<?>getType()Return the type that this expression will returnvoidsetOpType(int i)voidsetType(java.lang.Class<?> type)- 
Methods inherited from class com.inductiveautomation.ignition.common.expressions.AbstractExpressionconnect, disconnect, getChildren, setChildren, shutdown, startup
 
- 
 
- 
- 
- 
Field Detail- 
ANDpublic static final int AND - See Also:
- Constant Field Values
 
 - 
ORpublic static final int OR - See Also:
- Constant Field Values
 
 - 
XORpublic static final int XOR - See Also:
- Constant Field Values
 
 - 
LSHIFTpublic static final int LSHIFT - See Also:
- Constant Field Values
 
 - 
RSHIFTpublic static final int RSHIFT - See Also:
- Constant Field Values
 
 
- 
 - 
Constructor Detail- 
BitwiseExpressionpublic BitwiseExpression(Expression e1, Expression e2, int opType) 
 - 
BitwiseExpressionpublic BitwiseExpression() 
 
- 
 - 
Method Detail- 
execute@Nonnull public QualifiedValue execute() throws ExpressionException Description copied from interface:ExpressionCompute and return the value of this expression- Throws:
- ExpressionException
 
 - 
getTypepublic java.lang.Class<?> getType() Description copied from interface:ExpressionReturn the type that this expression will return
 - 
setTypepublic void setType(java.lang.Class<?> type) 
 - 
getOpNamepublic java.lang.String getOpName() Description copied from interface:ExpressionReturn a human-readable name for the operation that this expression performs
 - 
getOpTypepublic int getOpType() 
 - 
setOpTypepublic void setOpType(int i) 
 
- 
 
-