It would be perfect, if there was @IgnoreIfNull annotation for normalizing my db, But there is not so How should I handle if my data has null value in object class?
public class Word {
public String id;
public String wordName;
@IgnoreNull //Origin may be null
public String wordOrigin;
}