Annotation Interface PropertyDesc


@Retention(SOURCE) @Target(TYPE) @Documented public @interface PropertyDesc
Describes properties or system properties that might exist as sub-elements.
  • Required Element Summary

    Required Elements
    Modifier and Type
    Required Element
    Description
    name of the property
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    the DataType class, can be Class<? extends DataType> or String.class, Integer.class, etc
    default value of the property
    freeform description
    Possible values, might not be a complete list and/or there could be other alternatives such as specific numbers, variables, etc.
  • Element Details

    • name

      String name
      name of the property
    • defaultValue

      String defaultValue
      default value of the property
      Default:
      "\u0000"
    • description

      String description
      freeform description
      Default:
      "\u0000"
    • dataType

      Class dataType
      the DataType class, can be Class<? extends DataType> or String.class, Integer.class, etc
      Default:
      java.lang.String.class
    • values

      String[] values
      Possible values, might not be a complete list and/or there could be other alternatives such as specific numbers, variables, etc.
      Default:
      {}