| java.lang.Object net.sf.jga.fn.arithmetic.ShortMath
Method Summary | |
public Short | and(Short x, Short y) | public Short | divides(Short x, Short y) | public Short | minus(Short x, Short y) | public Short | modulus(Short x, Short y) | public Short | multiplies(Short x, Short y) | public Short | negate(Short x) | public Short | not(Short x) | public Short | one() | public Short | or(Short x, Short y) | public Short | plus(Short x, Short y) | public Short | shiftLeft(Short x, Integer y) | public Short | signedShiftRight(Short x, Integer y) | public Short | unsignedShiftRight(Short x, Integer y) Optional. | public Short | valueOf(Number value) | public Short | xor(Short x, Short y) | public Short | zero() |
serialVersionUID | final static long serialVersionUID(Code) | | |
divides | public Short divides(Short x, Short y)(Code) | | For numeric arguments x and y, returns x / y
the quotient of the two arguments |
minus | public Short minus(Short x, Short y)(Code) | | For numeric arguments x and y, returns x - y
the difference of the two arguments |
modulus | public Short modulus(Short x, Short y)(Code) | | For numeric arguments x and y, returns x % y
the modulus of the two arguments |
multiplies | public Short multiplies(Short x, Short y)(Code) | | For numeric arguments x and y, returns x * y
the product of the two arguments |
negate | public Short negate(Short x)(Code) | | for numeric argument x, returns -x
the negative of its argument |
not | public Short not(Short x)(Code) | | For numeric argument x, returns ~x
the one's complement of the argument |
one | public Short one()(Code) | | Returns the value 1 of the appropriate type
|
plus | public Short plus(Short x, Short y)(Code) | | For numeric arguments x and y, returns x + y
the sum of the two arguments |
zero | public Short zero()(Code) | | Returns the value 0 of the appropriate type
|
|
|