This statement creates a UDT named phonenumbers_ary:
CREATE TYPE phonenumbers_ary AS CHAR(10) ARRAY[5];
This statement creates a Java external stored procedure using the phonenumbers_ary UDT as the data type for the input parameter A1:
REPLACE PROCEDURE getPhoneNum(IN A1 phonenumbers_ary, IN EMPID INTEGER, OUT myphonenum INTEGER) LANGUAGE JAVA NO SQL PARAMETER STYLE JAVA EXTERNAL NAME 'UDF_JAR:UserDefinedFunctions.getPhoneNums';
Result:
public static void getPhoneNums(java.sql.Array A1, int empid, int[] myphonenum)