public @interface NestParameterInformation
Annotation to be placed on tasks to provide information about input parameters.
Any class that is declared to be contained in a bundle in the task declarations entry file can be annotated with NestParameterInformation. The fields in the annotation is used to convey information about a given task parameter.
public String[] | Specifies the alias names of the parameter. |
public boolean | Specifies if the parameter is deprecated. |
public NestInformation[] | Specifies the documentational informations about the task parameter. |
public boolean | Specifies if the parameter is required. |
public NestTypeUsage | Specifies the type information of the parameter. |
public String | value() Specifies the name of the parameter. |
From: Annotation |
Specifies the documentational informations about the task parameter.
The informations.
public abstract NestTypeUsage type() default @NestTypeUsage(kind = "OBJECT_LITERAL", value = Object.class)
Specifies the type information of the parameter.
The type information.