Class JSNumber

java.lang.Object
org.fife.rsta.ac.js.ecma.api.ecma3.JSNumber
All Implemented Interfaces:
JSNumberFunctions, JSObjectFunctions

public abstract class JSNumber extends Object implements JSNumberFunctions
Object Number
Since:
Standard ECMA-262 3rd. Edition
  • Field Details

    • prototype

      public JSNumber prototype
      property prototype
      Since:
      Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
      See Also:
    • constructor

      protected JSFunction constructor
      property constructor
      Since:
      Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
      See Also:
    • MIN_VALUE

      public static JSNumber MIN_VALUE
      property MIN_VALUE The smallest representable number.
      Since:
      Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
      See Also:
    • MAX_VALUE

      public static JSNumber MAX_VALUE
      property MAX_VALUE The largest representable number.
      Since:
      Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
      See Also:
    • NaN

      public static JSNumber NaN
      property NaN Not-a-number value.
      Since:
      Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
      See Also:
    • NEGATIVE_INFINITY

      public static JSNumber NEGATIVE_INFINITY
      property NEGATIVE_INFINITY Negative infinite value.
      Since:
      Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
      See Also:
    • POSITIVE_INFINITY

      public static JSNumber POSITIVE_INFINITY
      property POSITIVE_INFINITY Infinite value.
      Since:
      Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
      See Also:
  • Constructor Details

    • JSNumber

      public JSNumber(JSObject value)
      Object Number(value)
      Parameters:
      value - The numeric value of the Number object being created or a value to be converted to a number.
      Since:
      Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.