package io.vertx.ext.consul;

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

Converter for ServiceEntryList. NOTE: This class has been automatically generated from the ServiceEntryList original class using Vert.x codegen.
/** * Converter for {@link io.vertx.ext.consul.ServiceEntryList}. * NOTE: This class has been automatically generated from the {@link io.vertx.ext.consul.ServiceEntryList} original class using Vert.x codegen. */
public class ServiceEntryListConverter { public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, ServiceEntryList obj) { for (java.util.Map.Entry<String, Object> member : json) { switch (member.getKey()) { case "index": if (member.getValue() instanceof Number) { obj.setIndex(((Number)member.getValue()).longValue()); } break; case "list": if (member.getValue() instanceof JsonArray) { java.util.ArrayList<io.vertx.ext.consul.ServiceEntry> list = new java.util.ArrayList<>(); ((Iterable<Object>)member.getValue()).forEach( item -> { if (item instanceof JsonObject) list.add(new io.vertx.ext.consul.ServiceEntry((JsonObject)item)); }); obj.setList(list); } break; } } } public static void toJson(ServiceEntryList obj, JsonObject json) { toJson(obj, json.getMap()); } public static void toJson(ServiceEntryList obj, java.util.Map<String, Object> json) { json.put("index", obj.getIndex()); if (obj.getList() != null) { JsonArray array = new JsonArray(); obj.getList().forEach(item -> array.add(item.toJson())); json.put("list", array); } } }