Annotation Type IgnoreNullElement


@Retention(RUNTIME) @Target(FIELD) public @interface IgnoreNullElement
Ignore a property with a null value when creating the response if the IgnoreNullElement annotation is used to declare the property. Example
     //Example: Code fragment
     public class Person {
         @IgnoreNullElement
         String name;
     }