Uses of Class
ai.krr.SyntaxAdaptableSymbol

Packages that use SyntaxAdaptableSymbol
ai.krr   
 

Uses of SyntaxAdaptableSymbol in ai.krr
 

Subclasses of SyntaxAdaptableSymbol in ai.krr
 class AnonymousSymbol
           This class implements part of the foundations for symbolic programming in Java.
 class BooleanSymbol
           This class implements part of the foundations for symbolic programming in Java.
 class CharacterSymbol
           This class implements part of the foundations for symbolic programming in Java.
 class IntegerSymbol
           This class implements part of the foundations for symbolic programming in Java.
 class NamedSymbol
           This class implements part of the foundations for symbolic programming in Java.
 class NumericSymbol
           This class implements part of the foundations for symbolic programming in Java.
 class RealNumberSymbol
           This class implements part of the foundations for symbolic programming in Java.
 class StringSymbol
           This class implements part of the foundations for symbolic programming in Java.
 

Methods in ai.krr that return SyntaxAdaptableSymbol
static SyntaxAdaptableSymbol LispSymbolAdaptor.parseSymbol(inf.compilers.LexicalAnalyzer scanner, java.util.Properties props)
           This function attempts to parse a Symbol from the underlying LexicalAnalyzer.
static SyntaxAdaptableSymbol KifSymbolAdaptor.parseSymbol(inf.compilers.LexicalAnalyzer scanner, java.util.Properties props)
           This function attempts to parse a Symbol from the underlying LexicalAnalyzer.
 SyntaxAdaptableSymbol LispSymbolAdaptor.read(java.io.Reader r)
           This function attempts to parse characters from the given Reader until a Symbol that represents an object in the internal representation has been parsed.
 SyntaxAdaptableSymbol KifSymbolAdaptor.read(java.io.Reader r)
           This function attempts to parse characters from the given Reader until a Symbol that represents an object in the internal representation has been parsed.
 

Methods in ai.krr that return types with arguments of type SyntaxAdaptableSymbol
 java.lang.Class<SyntaxAdaptableSymbol> LispSymbolAdaptor.getInternalClass()
           This function returns the Class that holds the internal representation this adaptor translates to and from.
 java.lang.Class<SyntaxAdaptableSymbol> KifSymbolAdaptor.getInternalClass()
           This function returns the Class that holds the internal representation this adaptor translates to and from.
 

Methods in ai.krr with parameters of type SyntaxAdaptableSymbol
 void LispSymbolAdaptor.prettyPrint(int indent, SyntaxAdaptableSymbol sy, java.io.Writer w)
           This function takes a logical Symbol which is a Java Object in the internal representation, and writes it to the given Writer as a string conforming to the LISP syntax.
 void KifSymbolAdaptor.prettyPrint(int indent, SyntaxAdaptableSymbol sy, java.io.Writer w)
           This function takes a logical Symbol which is a Java Object in the internal representation, and writes it to the given Writer as a string conforming to the LISP syntax.
 void LispSymbolAdaptor.write(SyntaxAdaptableSymbol sy, java.io.Writer w)
           This function takes a logical Symbol which is a Java Object in the internal representation, and writes it to the given Writer as a String conforming to the LISP syntax.
 void KifSymbolAdaptor.write(SyntaxAdaptableSymbol sy, java.io.Writer w)
           This function takes a logical Symbol which is a Java Object in the internal representation, and writes it to the given Writer as a String conforming to the LISP syntax.
 

Method parameters in ai.krr with type arguments of type SyntaxAdaptableSymbol
static Symbol SyntaxAdaptableSymbol.read(java.io.Reader r, inf.compilers.SyntaxAdaptor<SyntaxAdaptableSymbol> sa)
           This function can be used to read a Symbol from the given Reader.