Annotation Type Name


  • @Documented
    @Inherited
    @Retention(RUNTIME)
    @Target(FIELD)
    public @interface Name
    Provides the parser with information used in generating a help-string to display to users
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      java.lang.String name
      Determines the name used to reference this field
      This binds tighter than name, meaning that having a field 'foo' named 'bar' and another defined as 'bar', then 'bar' will also need a name, to be referenced
      Note that multiple fields with the same name is not supported
    • Element Detail

      • name

        java.lang.String name
        Determines the name used to reference this field
        This binds tighter than name, meaning that having a field 'foo' named 'bar' and another defined as 'bar', then 'bar' will also need a name, to be referenced
        Note that multiple fields with the same name is not supported
        Default:
        ""