Annotation Interface JsonIgnore
@Retention(RUNTIME)
@Target({ANNOTATION_TYPE,METHOD,CONSTRUCTOR,FIELD})
public @interface JsonIgnore
Simplified annotation to ignore properties. To be replaced by
Ignore.- Author:
- Fasterxml/Jackson
-
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionbooleanOptional argument that defines whether this annotation is active or not.
-
Element Details
-
value
boolean valueOptional argument that defines whether this annotation is active or not.- Returns:
- True if annotation is enabled (normal case); false if it is to be ignored (only useful for mix-in annotations to "mask" annotation)
- Default:
true
-