All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class oplan.util.lisp.Symbol

java.lang.Object
   |
   +----oplan.util.lisp.LispObject
           |
           +----oplan.util.lisp.Symbol

public class Symbol
extends LispObject
The root class for Lisp symbols.

The correct way to create a new symbol is to call Symbol.intern(String name). It will return an instance of Symbol or of an appropriate subclass, depending on the first character of the name.


Variable Index

 o name
 o obTable

Constructor Index

 o Symbol(String)

Method Index

 o intern(String)
 o toString()

Variables

 o obTable
 protected static Hashtable obTable
 o name
 public String name

Constructors

 o Symbol
 protected Symbol(String name)

Methods

 o intern
 public static Symbol intern(String s)
 o toString
 public String toString()
Overrides:
toString in class Object

All Packages  Class Hierarchy  This Package  Previous  Next  Index