Annotation Type ColumnDefinition


  • @Retention(RUNTIME)
    @Target(FIELD)
    @Column
    public @interface ColumnDefinition
    Allow to specify information about a column to generate the schema.
    • Field Detail

      • DEFAULT_PRECISION

        static final int DEFAULT_PRECISION
      • DEFAULT_SCALE

        static final int DEFAULT_SCALE
    • Element Detail

      • nullable

        boolean nullable
        Default:
        true
      • min

        long min
        Default:
        0L
      • max

        long max
        Default:
        -1L
      • precision

        int precision
        Default:
        10
      • scale

        int scale
        Default:
        2