Annotation Type SqlArray


  • @Target(TYPE)
    @Retention(RUNTIME)
    public @interface SqlArray
    Identifies a type that represents an ARRAY SQL type. Any type to which this annotation is applied must either extend or implement java.util.List. Additionally the type must have at least one of the following:
    • a public zero-arg constructor
    • a public constructor Constructor(int initialCapacity)
    • a public constructor Constructor(<? super List<?>>)
    • a public static factory method of(<? super List<?>>)
    If more than one of the above is supported it is implementation dependent which is used.
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      java.lang.String elementSqlTypeName  
    • Element Detail

      • elementSqlTypeName

        java.lang.String elementSqlTypeName