|
|||||||||
Home >> All >> alice >> tuprolog >> [ lib overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: ![]() ![]() ![]() |
DETAIL: FIELD | CONSTR | METHOD |
alice.tuprolog.lib
Class Signature

java.lang.Objectalice.tuprolog.lib.Signature
- All Implemented Interfaces:
- java.io.Serializable
- class Signature
- extends java.lang.Object
- implements java.io.Serializable
- extends java.lang.Object
Signature class mantains information about type and value of a method arguments
Field Summary | |
(package private) java.lang.Class[] |
types
|
(package private) java.lang.Object[] |
values
|
Constructor Summary | |
Signature(java.lang.Object[] v,
java.lang.Class[] c)
|
Method Summary | |
java.lang.Class[] |
getTypes()
|
(package private) java.lang.Object[] |
getValues()
|
java.lang.String |
toString()
Convert this Object to a human-readable String. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
types
java.lang.Class[] types
values
java.lang.Object[] values
Constructor Detail |
Signature
public Signature(java.lang.Object[] v, java.lang.Class[] c) throws java.lang.Exception
Method Detail |
getTypes
public java.lang.Class[] getTypes()
getValues
java.lang.Object[] getValues()
toString
public java.lang.String toString()
- Description copied from class:
java.lang.Object
- Convert this Object to a human-readable String.
There are no limits placed on how long this String
should be or what it should contain. We suggest you
make it as intuitive as possible to be able to place
it into System.out.println() 55
and such.
It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.
This method will be called when performing string concatenation with this object. If the result is
null
, string concatenation will instead use"null"
.The default implementation returns
getClass().getName() + "@" + Integer.toHexString(hashCode())
.
|
|||||||||
Home >> All >> alice >> tuprolog >> [ lib overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: ![]() ![]() ![]() |
DETAIL: FIELD | CONSTR | METHOD |