Module eclipselink
Annotation Interface OracleArray
An OracleArray annotation is used to define an Oracle database VARRAY type.
This type can be used within PLSQL procedure calls.
- See Also:
- Author:
- David McCann
-
Required Element Summary
Required Elements -
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionClass<?> The Java Collection class to map the VARRAY to.The name of the database type this VARRAY holds onto.
-
Element Details
-
name
String nameThe name of the VARRAY type in the database. -
nestedType
String nestedTypeThe name of the database type this VARRAY holds onto.- Default:
"VARCHAR_TYPE"
-
javaType
Class<?> javaTypeThe Java Collection class to map the VARRAY to.This can be any valid Collection implementation.
- Default:
java.util.ArrayList.class
-