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