public interface BitwiseOperationToken
Modifier and Type | Method and Description |
---|---|
BitwiseOperationToken |
bitwiseAnd(Token rightArgument)
Returns a token representing the bitwise AND of this token and
the given token.
|
BitwiseOperationToken |
bitwiseNot()
Returns a token representing the bitwise NOT of this token.
|
BitwiseOperationToken |
bitwiseOr(Token rightArgument)
Returns a token representing the bitwise OR of this token and
the given token.
|
BitwiseOperationToken |
bitwiseXor(Token rightArgument)
Returns a token representing the bitwise XOR of this token and
the given token.
|
BitwiseOperationToken bitwiseAnd(Token rightArgument) throws IllegalActionException
rightArgument
- The token that is bitwise ANDed with this token.IllegalActionException
- If the given token is not
compatible for this operation, or the operation does not make
sense for this type.BitwiseOperationToken bitwiseNot() throws IllegalActionException
IllegalActionException
- If the given token is not
compatible for this operation, or the operation does not make
sense for this type.BitwiseOperationToken bitwiseOr(Token rightArgument) throws IllegalActionException
rightArgument
- The token that is bitwise OR'd with this token.IllegalActionException
- If the given token is not
compatible for this operation, or the operation does not make
sense for this type.BitwiseOperationToken bitwiseXor(Token rightArgument) throws IllegalActionException
rightArgument
- The token that is bitwise XOR'd with this token.IllegalActionException
- If the given token is not
compatible for this operation, or the operation does not make
sense for this type.