Jatha Software

Uses of Interface
org.jatha.dynatype.LispString

Packages that use LispString
org.jatha   
org.jatha.dynatype   
org.jatha.eval   
org.jatha.util   
 

Uses of LispString in org.jatha
 

Methods in org.jatha that return LispString
 LispString Jatha.makeString(String str)
          Creates a LispString from a Java string.
 

Methods in org.jatha with parameters of type LispString
 LispSymbol Jatha.makeConstant(LispString symbolName)
           
 LispSymbol Jatha.makeKeyword(LispString symbolName)
           
 LispNil Jatha.makeNIL(LispString symbolName)
           
 LispSymbol Jatha.makeSymbol(LispString symbolName)
           
 

Uses of LispString in org.jatha.dynatype
 

Classes in org.jatha.dynatype that implement LispString
 class StandardLispString
           
 

Fields in org.jatha.dynatype declared as LispString
protected  LispString StandardLispSymbol.f_name
           
private  LispString StandardLispNIL.name
           
 

Methods in org.jatha.dynatype that return LispString
private  LispString StandardLispPackage.getAsString(LispValue inp)
           
 LispString StandardLispPackage.getName()
           
 LispString LispPackage.getName()
          Returns the name of this package as a LispString.
static LispString LispValueFactory.makeString(Jatha lisp, String str)
          Deprecated. Use the same method on the Jatha class instead
 

Methods in org.jatha.dynatype with parameters of type LispString
 LispValue StandardLispPackage.addSymbol(LispString name, LispValue symbol)
          Stores a new symbol in this package.
 LispValue LispPackage.addSymbol(LispString name, LispValue symbol)
          Returns the symbol after it is added to the package.
 LispValue StandardLispPackage.getExternalSymbol(LispString str)
           
 LispValue LispPackage.getExternalSymbol(LispString str)
          Returns the external symbol with the given name
 LispValue StandardLispPackage.getSymbol(LispString str)
           
 LispValue LispPackage.getSymbol(LispString str)
          Returns the symbol with the given name.
static LispSymbol LispValueFactory.makeConstant(Jatha lisp, LispString symbolName)
          Deprecated. Use the same method on the Jatha class instead
static LispSymbol LispValueFactory.makeKeyword(Jatha lisp, LispString symbolName)
          Deprecated. Use the same method on the Jatha class instead
static StandardLispNIL LispValueFactory.makeNIL(Jatha lisp, LispString symbolName)
          Deprecated. Use the same method on the Jatha class instead
static LispSymbol LispValueFactory.makeSymbol(Jatha lisp, LispString symbolName)
          Deprecated. Use the same method on the Jatha class instead
 

Constructors in org.jatha.dynatype with parameters of type LispString
StandardLispConstant(Jatha lisp, LispString symbolNameString)
           
StandardLispConstant(Jatha lisp, LispString symbolNameString, LispValue itsValue)
           
StandardLispKeyword(Jatha lisp, LispString symbolNameString)
           
StandardLispNIL(Jatha lisp, LispString symbolNameString)
           
StandardLispSymbol(Jatha lisp, LispString symbolNameString)
           
 

Uses of LispString in org.jatha.eval
 

Methods in org.jatha.eval with parameters of type LispString
 LispValue LispEvaluator.intern(LispString symbolString)
           
 LispValue LispEvaluator.intern(LispString symbolString, LispPackage pkg)
           
 LispValue LispEvaluator.intern(LispString symbolString, LispValue symbol)
           
 LispValue LispEvaluator.intern(LispString symbolString, LispValue symbol, LispPackage pkg)
           
 

Uses of LispString in org.jatha.util
 

Methods in org.jatha.util with parameters of type LispString
 LispValue SymbolTable.get(LispString key)
           
 LispValue SymbolTable.put(LispString key, LispValue value)
           
 LispValue SymbolTable.replace(LispString key, LispValue value)
           
 


Jatha Software