public @interface NestFieldInformation
Annotation to specify information about a field of the annotated type.
The annotated type will have the specified field information added to it. This results in the annotated type declaring a field with the given name and information for scripting purposes.
The type is not required to actually declare a field with that name.
public boolean | Specifies if the given field is deprecated. |
public NestInformation[] | Specifies the documentation informations for the field. |
public NestTypeUsage | Specifies the type of the field. |
public String | value() Specifies the name of the field |
From: Annotation |
Specifies if the given field is deprecated.
true
if the field is deprecated.Specifies the documentation informations for the field.
The array of informations.
public abstract NestTypeUsage type() default @NestTypeUsage(kind = "OBJECT_LITERAL", value = Object.class)