Annotation Type FeatureParameter


  • @Documented
    @Inherited
    @Retention(RUNTIME)
    @Target(TYPE)
    public @interface FeatureParameter
    A parameter supported by a feature
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      java.lang.String name
      The name of the parameter
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      java.lang.String[] allowedValues
      Set of values that are allowed for this parameter.
      boolean multiValued
      Does the parameter support multi-values.
    • Element Detail

      • name

        java.lang.String name
        The name of the parameter
      • multiValued

        boolean multiValued
        Does the parameter support multi-values. The default is 'false' (or single valued).
        Default:
        false
      • allowedValues

        java.lang.String[] allowedValues
        Set of values that are allowed for this parameter. The default is {} (meaning all values are allowed).
        Default:
        {}