package io.vertx.ext.mongo;
import io.vertx.core.json.JsonObject;
import io.vertx.core.json.JsonArray;
import io.vertx.core.json.impl.JsonUtil;
import java.time.Instant;
import java.time.format.DateTimeFormatter;
public class AggregateOptionsConverter {
public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, AggregateOptions obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "allowDiskUse":
if (member.getValue() instanceof Boolean) {
obj.setAllowDiskUse((Boolean)member.getValue());
}
break;
case "batchSize":
if (member.getValue() instanceof Number) {
obj.setBatchSize(((Number)member.getValue()).intValue());
}
break;
case "maxTime":
if (member.getValue() instanceof Number) {
obj.setMaxTime(((Number)member.getValue()).longValue());
}
break;
}
}
}
public static void toJson(AggregateOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}
public static void toJson(AggregateOptions obj, java.util.Map<String, Object> json) {
if (obj.getAllowDiskUse() != null) {
json.put("allowDiskUse", obj.getAllowDiskUse());
}
json.put("batchSize", obj.getBatchSize());
json.put("maxTime", obj.getMaxTime());
}
}