Class Object |
Details |
Constructor |
Object()
Methods: |
the name of the current class followed by all classes
that it inherits from. |
the classname for the current class in package::class format |
Clone the object.
Test equality of this object with another
the names of all fieldsmof an object |
This now depends on lang::generate_member_names procedure which is no longer dependent on the implementation details, but uses one of the Unicon functions membernames().
the names of all methods |
What methods are available for this class? remove implementation dependency and instead use Unicon function for this information.
the value of the fName field |
Produce the value of the named field. Fails if no such field.
name of fieldGet the Class object for this object
Return the class name as a string, e.g. lang__Object. This method is deprecated. Consider using method className().
Return the class instance number
fName |
if no field fName |
Does this class have a specific field?
name of possible field mName |
if no method mName exists |
Does this class have a specific method?
Method name to check for.Return a hash code for the object
the class if it's an instance of superClassname |
otherwise |
Is this class a subclass of another one?
class name to check as superclassmName | Name of method to call
|
args |
the outcome of the invocation |
if no method exists with that name |
Invoke a class method by name.
Remaining arguments are arguments to callSucceed if and only if this object is an instance of class with the given name. This method is deprecated. Consider using method instanceOf().
fName | name of field
|
value |
value |
if no field fName |
Set the value of the named field.
value to set field toReturn a string representation of the oject.