Previous ION Java User's Guide: ION Java Class and Method Reference Next

getComplexArray()

The getComplexArray() method returns the value of the complex array variable.

Syntax

public final IONComplex[] getComplexArray()

Return Value

The method returns the value of the complex array variable.

Arguments

None.

Exceptions

IONNotAnArrayException

Example

try {  
IONComplex c[] = myVariable.getComplexArray();  
}catch(IONNotAnArrayException e){  
   System.err.println("Variable is not an array");  
}  

  IDL Online Help (March 06, 2007)