public boolean isExtraLazy() {
   return ("extra".equals(collection.getLazy()));
 }
 public boolean isLazy() {
   return isExtraLazy()
       || MappingHelper.getBooleanValue(
           collection.getLazy().value(), getDefaults().isDefaultLazy());
 }