T - the input typepublic interface HasMultiply<T>
multiply(int)-methods for generating new expressions for the product
of this value and something else.| Modifier and Type | Method and Description |
|---|---|
HasMultiply<T> |
multiply(byte other)
Creates and returns an expression that returns the product of the result
from the current expression and the other factor.
|
ToDouble<T> |
multiply(double other)
Creates and returns an expression that returns the product of the result
from the current expression and the other factor.
|
HasMultiply<T> |
multiply(int other)
Creates and returns an expression that returns the product of the result
from the current expression and the other factor.
|
HasMultiply<T> |
multiply(long other)
Creates and returns an expression that returns the product of the result
from the current expression and the other factor.
|
HasMultiply<T> |
multiply(ToByte<T> other)
Creates and returns an expression that returns the product of the result
from the current expression and the other factor.
|
ToDouble<T> |
multiply(ToDouble<T> other)
Creates and returns an expression that returns the product of the result
from the current expression and the other factor.
|
HasMultiply<T> |
multiply(ToInt<T> other)
Creates and returns an expression that returns the product of the result
from the current expression and the other factor.
|
HasMultiply<T> |
multiply(ToLong<T> other)
Creates and returns an expression that returns the product of the result
from the current expression and the other factor.
|
HasMultiply<T> multiply(byte other)
9 and the factor was set to
3, then the result of the returned expression would be 27.
If this expression is nullable and the result was null, then the
result of the returned expression will also be null.
other - the other factor used for the multiplicationHasMultiply<T> multiply(ToByte<T> other)
9 and the factor was set to
3, then the result of the returned expression would be 27.
If this expression is nullable and the result was null, then the
result of the returned expression will also be null.
other - the other factor used for the multiplicationHasMultiply<T> multiply(int other)
9 and the factor was set to
3, then the result of the returned expression would be 27.
If this expression is nullable and the result was null, then the
result of the returned expression will also be null.
other - the other factor used for the multiplicationHasMultiply<T> multiply(ToInt<T> other)
9 and the factor was set to
3, then the result of the returned expression would be 27.
If this expression is nullable and the result was null, then the
result of the returned expression will also be null.
other - the other factor used for the multiplicationHasMultiply<T> multiply(long other)
9 and the factor was set to
3, then the result of the returned expression would be 27.
If this expression is nullable and the result was null, then the
result of the returned expression will also be null.
other - the other factor used for the multiplicationHasMultiply<T> multiply(ToLong<T> other)
9 and the factor was set to
3, then the result of the returned expression would be 27.
If this expression is nullable and the result was null, then the
result of the returned expression will also be null.
other - the other factor used for the multiplicationToDouble<T> multiply(double other)
9 and the factor was set to
3, then the result of the returned expression would be 27.
If this expression is nullable and the result was null, then the
result of the returned expression will also be null.
other - the other factor used for the multiplicationToDouble<T> multiply(ToDouble<T> other)
9 and the factor was set to
3, then the result of the returned expression would be 27.
If this expression is nullable and the result was null, then the
result of the returned expression will also be null.
other - the other factor used for the multiplicationCopyright © 2019 Speedment, Inc.. All rights reserved.