package io.vertx.core.net;

import io.vertx.core.json.JsonObject;
import io.vertx.core.json.JsonArray;
import java.time.Instant;
import java.time.format.DateTimeFormatter;

Converter for NetClientOptions. NOTE: This class has been automatically generated from the NetClientOptions original class using Vert.x codegen.
/** * Converter for {@link io.vertx.core.net.NetClientOptions}. * NOTE: This class has been automatically generated from the {@link io.vertx.core.net.NetClientOptions} original class using Vert.x codegen. */
class NetClientOptionsConverter { static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, NetClientOptions obj) { for (java.util.Map.Entry<String, Object> member : json) { switch (member.getKey()) { case "hostnameVerificationAlgorithm": if (member.getValue() instanceof String) { obj.setHostnameVerificationAlgorithm((String)member.getValue()); } break; case "reconnectAttempts": if (member.getValue() instanceof Number) { obj.setReconnectAttempts(((Number)member.getValue()).intValue()); } break; case "reconnectInterval": if (member.getValue() instanceof Number) { obj.setReconnectInterval(((Number)member.getValue()).longValue()); } break; } } } static void toJson(NetClientOptions obj, JsonObject json) { toJson(obj, json.getMap()); } static void toJson(NetClientOptions obj, java.util.Map<String, Object> json) { if (obj.getHostnameVerificationAlgorithm() != null) { json.put("hostnameVerificationAlgorithm", obj.getHostnameVerificationAlgorithm()); } json.put("reconnectAttempts", obj.getReconnectAttempts()); json.put("reconnectInterval", obj.getReconnectInterval()); } }