Class SexprInt

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

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

    Fields
    Modifier and Type
    Field
    Description
    final int
    The int value

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

    filename, lineNumber
  • Constructor Summary

    Constructors
    Constructor
    Description
    SexprInt(int value, String filename, int lineNumber)
    Create a new SexprInt 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 int value
      The int value
  • Constructor Details

    • SexprInt

      public SexprInt(int value, String filename, int lineNumber)
      Create a new SexprInt with the specified value and source location
      Parameters:
      value - The int 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