
io.vertx.kafka.admin.NewPartitionsConverter Maven / Gradle / Ivy
package io.vertx.kafka.admin;
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;
/**
* Converter and mapper for {@link io.vertx.kafka.admin.NewPartitions}.
* NOTE: This class has been automatically generated from the {@link io.vertx.kafka.admin.NewPartitions} original class using Vert.x codegen.
*/
public class NewPartitionsConverter {
public static void fromJson(Iterable> json, NewPartitions obj) {
for (java.util.Map.Entry member : json) {
switch (member.getKey()) {
case "totalCount":
if (member.getValue() instanceof Number) {
obj.setTotalCount(((Number)member.getValue()).intValue());
}
break;
}
}
}
public static void toJson(NewPartitions obj, JsonObject json) {
toJson(obj, json.getMap());
}
public static void toJson(NewPartitions obj, java.util.Map json) {
json.put("totalCount", obj.getTotalCount());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy