Package org.jparsec

Class Tokens.ScientificNotation

java.lang.Object
org.jparsec.Tokens.ScientificNotation
Enclosing class:
Tokens

public static final class Tokens.ScientificNotation extends Object
Represents a scientific notation with a significand (mantissa) and an exponent. Both are represented with a String to avoid number range issue.
  • Field Details

    • significand

      public final String significand
      The significand (mantissa) before the "E".
    • exponent

      public final String exponent
      The exponent after the "E".
  • Constructor Details

    • ScientificNotation

      @Deprecated public ScientificNotation(String mantissa, String exp)
      Deprecated.
      Use Tokens.scientificNotation() instead.
  • Method Details