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