if (prefetchSize != null) {
clonedOptions.prefetchSize(prefetchSize);
}
Integer chunkSize = fetchOptions.getChunkSize();
if (chunkSize != null) {
clonedOptions.chunkSize(chunkSize);
}
return clonedOptions;
}
private FetchOptions cloneFetchOptions(FetchOptions fetchOptions) {