The specifics mainly deal with the number blending that is applied in the Dogelog Player for the Java platform. Whereas Prolog atoms are simply mapped to Javat String class, the mapping of Prolog integers is towards Java Integer class and JavaScript BigInteger class. Exclusion of NaN and infinites from Prolog floats, is done by mapping values to errors.
The following mapping from Prolog to Java is used:
Prolog Atomic
+--- Prolog Atom
+--- Java String
+--- Prolog Number
+--- Prolog integer
+---- Java Integer
+---- Java BigInteger
+--- Prolog float
+---- Java Double
+--- Prolog 0rNone Reference
+--- Java null
+--- Prolog 0rFalse Reference
+--- Java Boolean.FALSE
+--- Prolog 0rTrue Reference
+--- Java Boolean.TRUE
The following Java specific calls are provided: