Class SexprDouble

java.lang.Object
org.jfuncmachine.sexprlang.parser.SexprItem
org.jfuncmachine.sexprlang.parser.SexprDouble

public final class SexprDouble extends SexprItem
An S-Expression double value
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final double
    The double value

    Fields inherited from class org.jfuncmachine.sexprlang.parser.SexprItem

    filename, lineNumber
  • Constructor Summary

    Constructors
    Constructor
    Description
    SexprDouble(double value, String filename, int lineNumber)
    Create a new SexprDouble with the specified value and source location
  • Method Summary

    Modifier and Type
    Method
    Description
     

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • value

      public final double value
      The double value
  • Constructor Details

    • SexprDouble

      public SexprDouble(double value, String filename, int lineNumber)
      Create a new SexprDouble with the specified value and source location
      Parameters:
      value - The double value
      filename - The source file where this value was read from
      lineNumber - The line number in the source file where this value is located
  • Method Details