Previous Page | Next Page

Java Object Language Elements

DELETE Method



Deletes the java object.
Category: Deletion

Syntax
Arguments
Details

Syntax

object.DELETE( );


Arguments

object

specifies the name of the java object.


Details

DATA step component objects are deleted automatically at the end of the DATA step. If you want to reuse the object reference variable in another java object constructor, you should delete the java object by using the DELETE method.

If you attempt to use a java object after you delete it, you will receive an error in the log.

Previous Page | Next Page | Top of Page