- copy clone()
Usage: clone ( )
Create a copy of the current object. Unlike serialization, this saves all members, as well.
Parameters
Info
- Return:
of the current instance
- Access:
public
- boolean equals()
Usage: equals ( $object )
Overridden in child class(es) as: AbstractList::equals()
A real, case-sensitive comparison between two objects, not necessarily of the same type.
Parameters
- object $object - object of any type to compare
Info
- Return:
true iff the current instance is the SAME as another instance of the same type
@
- Access:
public
- boolean equalsIgnoreCase()
Usage: equalsIgnoreCase ( $object )
Conducts a case-insensitive comparison of two objects
Parameters
- object $object - object of any type to compar
Info
- Return:
true iff the current isntance is the SAME as another instance of the same type
@
- Access:
public
- void finalize()
Usage: finalize ( )
Forces deletion of all references to this object. They become NullPointers.
Parameters
Info
- String getClass()
Usage: getClass ( )
Returns the name of the current class object.
Parameters
Info
- Return:
The string name of this class
@
- Access:
public
- String toString()
Usage: toString ( )
Overridden in child class(es) as: StringBuffer::toString(), AbstractCollection::toString()
Returns a string representation of the current object
Parameters
Info
- Return:
the String representation of this classes methods and members
@
- Access:
public
- void wait()
Usage: wait ( $seconds, [$micro = FALSE] )
When called, will stop (pause, actually) execution of the script for a given number of seconds or microseconds.
Parameters
- seconds $seconds - Number of seconds or microseconds to wait
@
- micro $micro - Pass 'true' to use microseconds (a millionth of a second) instead of seconds
@
Info