toString
Returns the string representation of this email address.
Calling from Kotlin
Here's an example of calling this function from Kotlin code:
val address = EmailAddress("[email protected]")
val message = "$address" // or address.toString()
println(message) // [email protected]
Content copied to clipboard
Calling from Java
Here's an example of calling this function from Java code:
final EmailAddress address = new EmailAddress("[email protected]");
final String message = address.toString();
System.out.println(message); // [email protected]
Content copied to clipboard