Java PrimerMethod Properties in Java
- By by Dirk Riehle
- April 18, 2000
Listing 10. The "String asString()" convenience conversion method.
/**
* Returns string representation of name.
* @methodtype conversion
* @methodproperties convenience
*/
public String asString() {
return asString(' ');
}