Annotation Interface Embedded.Nullable

Enclosing class:
Embedded

@Embedded(onEmpty=USE_NULL) @Documented @Retention(RUNTIME) @Target({FIELD,METHOD}) @Nullable public static @interface Embedded.Nullable
Shortcut for a nullable embedded property.
@Embedded.Nullable private Address address;
as alternative to the more verbose
@Embedded(onEmpty = USE_NULL)
@Nullable private Address address;
Since:
3.0
Author:
Christoph Strobl
See Also:
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description