Annotation Type OracleArray

    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      String name
      (Required) The name of the VARRAY type in the database.
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      Class javaType
      (Optional) The Java Collection class to map the VARRAY to.
      String nestedType
      (Required) The name of the database type this VARRAY holds onto.
    • Element Detail

      • name

        String name
        (Required) The name of the VARRAY type in the database.
      • nestedType

        String nestedType
        (Required) The name of the database type this VARRAY holds onto.
        Default:
        "VARCHAR_TYPE"
      • javaType

        Class javaType
        (Optional) The Java Collection class to map the VARRAY to. This can be any valid Collection implementation.
        Default:
        java.util.ArrayList.class