Annotation Interface DBAnnotatedField


@Target(FIELD) @Retention(RUNTIME) public @interface DBAnnotatedField
Mark a field to be stored in a table column
See Also:
  • Element Details

    • column

      String column
      The name of the column

      There should be a DBAnnotatedColumn annotation with the same column name

    • indexed

      boolean indexed
      True to index the column
      Default:
      false
    • sparse

      boolean sparse
      True to use sparse storage

      If the Field used by the codec does not support null values, this can be set to true to allow null values.

      Default:
      false
    • codec

      Specify a custom codec

      This is not required for types supported directly by a Field.

      See Also:
      Default:
      ghidra.util.database.annot.DBAnnotatedField.DefaultCodec.class