Class org.as2lib.core.ObjectStringifier

org.as2lib.core.BasicClass
   +--org.as2lib.core.ObjectStringifier

Implemented Interfaces

Stringifier

Description

ObjectStringifier is the most basic stringifier form.

It stringifies all kinds of objects, this means classes, instances and primitives.

Method Index

execute()

Inherited from BasicClass

toString()

Method Detail

execute

public function execute(target):String

Returns the string representation of the passed-in target object.

The string representation is composed as follows:

   [type theFullQualifiedNameOfTheObjectsType]
 

The string representation of the class org.as2lib.core.BasicClass or instances of it looks like this:

   [type org.as2lib.core.BasicClass]
 

Parameters

targetthe target object to stringify

Return

the string representation of the passed-in target object

Specified By

execute() in org.as2lib.util.Stringifier