Package | Description |
---|---|
ptolemy.data |
Packages for manipulating data that passes between actors.
|
ptolemy.data.expr |
The Ptolemy II Expression Language.
|
Modifier and Type | Class and Description |
---|---|
class |
BooleanToken
A token that contains a boolean variable.
|
class |
ComplexToken
A token that contains a Complex number represented by a 64-bit
double-precision floating point real and imaginary parts.
|
class |
DoubleToken
A token that contains a 64-bit signed mantissa, signed exponent double
precision floating-point number (IEEE 754).
|
class |
FixToken
A token that contains an instance of FixPoint.
|
class |
FloatToken
A token that contains a 32-bit signed mantissa, signed exponent single
precision floating-point number (IEEE 754).
|
class |
IntToken
A token that contains a signed 32-bit integer number.
|
class |
LongToken
A token that contains a signed 64-bit long integer.
|
class |
PetiteToken
A token that contains a number which is essentially a
simulation equivalent for fixed point numbers in embedded processors.
|
class |
ScalarToken
Abstract base class for tokens that contain a scalar.
|
class |
ShortToken
A token that contains a signed 16-bit integer number.
|
class |
SmoothToken
A double-valued token that contains zero or more derivatives, representing
the value of a function of time at a particular time.
|
class |
UnsignedByteToken
A token that contains a byte number in the range 0 through 255.
|
class |
UnsizedFixToken
A token that contains an instance of FixPoint.
|
Modifier and Type | Method and Description |
---|---|
BitwiseOperationToken |
BitwiseOperationToken.bitwiseAnd(Token rightArgument)
Returns a token representing the bitwise AND of this token and
the given token.
|
BitwiseOperationToken |
ScalarToken.bitwiseAnd(Token rightArgument)
Returns a token representing the bitwise AND of this token and
the given token.
|
BitwiseOperationToken |
BitwiseOperationToken.bitwiseNot()
Returns a token representing the bitwise NOT of this token.
|
BitwiseOperationToken |
ScalarToken.bitwiseNot()
Returns a token representing the bitwise NOT of this token.
|
BitwiseOperationToken |
BitwiseOperationToken.bitwiseOr(Token rightArgument)
Returns a token representing the bitwise OR of this token and
the given token.
|
BitwiseOperationToken |
ScalarToken.bitwiseOr(Token rightArgument)
Returns a token representing the bitwise OR of this token and
the given token.
|
BitwiseOperationToken |
BitwiseOperationToken.bitwiseXor(Token rightArgument)
Returns a token representing the bitwise XOR of this token and
the given token.
|
BitwiseOperationToken |
ScalarToken.bitwiseXor(Token rightArgument)
Returns a token representing the bitwise XOR of this token and
the given token.
|
Modifier and Type | Class and Description |
---|---|
class |
ConcreteScalarToken
A token that represents a scalar of any type.
|