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.ObjectRepresents a scientific notation with a significand (mantissa) and an exponent. Both are represented with aStringto avoid number range issue.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.StringexponentThe exponent after the "E".java.lang.StringsignificandThe 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 booleanequals(java.lang.Object obj)inthashCode()java.lang.StringtoString()
-