Package org.jparsec
Class Tokens.ScientificNotation
- java.lang.Object
-
- org.jparsec.Tokens.ScientificNotation
-
- Enclosing class:
- Tokens
public static final class Tokens.ScientificNotation extends java.lang.Object
Represents a scientific notation with a significand (mantissa) and an exponent. Both are represented with aString
to avoid number range issue.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
exponent
The exponent after the "E".java.lang.String
significand
The significand (mantissa) before the "E".
-
Constructor Summary
Constructors Constructor Description ScientificNotation(java.lang.String mantissa, java.lang.String exp)
Deprecated.UseTokens.scientificNotation()
instead.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
int
hashCode()
java.lang.String
toString()
-