Annotation Type FooterComments


  • @Target({TYPE,FIELD})
    @Retention(RUNTIME)
    public @interface FooterComments
    Footer Comments. Add a comment to the bottom of the corresponding configuration for easy reading and viewing.

    e.g.

     foo: "bar"
     # The first line of the comment
     # The second line of the comment
     
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      @NotNull java.lang.String[] value
      If the content of the note is 0, it will be treated as a blank line.
    • Element Detail

      • value

        @NotNull
        @NotNull java.lang.String[] value
        If the content of the note is 0, it will be treated as a blank line.

        e.g. {"foo","","bar"} Will be set as

         foo: "bar"
         # foo
        
         # bar
         
        Returns:
        The content of this comment
        Default:
        {""}