com.rethinkdb.annotations.IgnoreNullFields Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qj-rethinkdb-driver Show documentation
Show all versions of qj-rethinkdb-driver Show documentation
Java driver for RethinkDB (Modified from Official version)
package com.rethinkdb.annotations;
import java.lang.annotation.*;
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
/**
* When saving this data to rethink db, skip null properties.
* To recursively skip null properties of children properties,
* specify this annotation to the children property's classes.
*/
public @interface IgnoreNullFields {
}