T
- the type of the field elementspublic interface FieldElement<T>
Field
Modifier and Type | Method and Description |
---|---|
T |
add(T a)
Compute this + a.
|
T |
divide(T a)
Compute this ÷ a.
|
Field<T> |
getField()
Get the
Field to which the instance belongs. |
T |
multiply(int n)
Compute n × this.
|
T |
multiply(T a)
Compute this × a.
|
T |
negate()
Returns the additive inverse of
this element. |
T |
reciprocal()
Returns the multiplicative inverse of
this element. |
T |
subtract(T a)
Compute this - a.
|
T add(T a)
a
- element to addNullArgumentException
- if addend
is null
.T subtract(T a)
a
- element to subtractNullArgumentException
- if a
is null
.T negate()
this
element.this
.T multiply(int n)
n
- Number of times this
must be added to itself.T multiply(T a)
a
- element to multiplyNullArgumentException
- if a
is null
.T divide(T a)
a
- element to addNullArgumentException
- if a
is null
.MathArithmeticException
- if a
is zeroT reciprocal()
this
element.this
.MathArithmeticException
- if this
is zeroCopyright © 2017 CNES. All rights reserved.