GNU Prolog for Java

Package gnu.prolog.term

Contains the various types of Term that can be used.

See:
          Description

Class Summary
AtomicTerm base class for all constant terms
AtomTerm Atom term.
ChangeableTerm Terms for which the value varies depending on prolog flags extend this class.
CompoundTerm Compound terms are the basic method for combining terms.
CompoundTermTag A tag of compound term such as foo/2.
DoubleQuotesTerm Term for storing a double quoted string as what this resolves to varies depending on the value of the double_quotes flag.
FloatTerm Floating point number term (uses double)
IntegerTerm 32bit Integer term.
JavaObjectTerm Term which is embedding JavaObject This term should never participate in text IO operations.
NumericTerm Abstract class for all Terms which represent numbers
Term base class for all terms.
TermCloneContext  
TermComparator comparator for two term
TermUtils Static utility functions for operating on Terms
VariableTerm Represents Prolog variables such as X or A.
 

Package gnu.prolog.term Description

Contains the various types of Term that can be used.


GNU Prolog for Java