
io.vertx.ext.consul.BlockingQueryOptionsConverter Maven / Gradle / Ivy
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 and mapper for {@link io.vertx.ext.consul.BlockingQueryOptions}.
* NOTE: This class has been automatically generated from the {@link io.vertx.ext.consul.BlockingQueryOptions} original class using Vert.x codegen.
*/
public class BlockingQueryOptionsConverter {
static void fromJson(Iterable> json, BlockingQueryOptions obj) {
for (java.util.Map.Entry member : json) {
switch (member.getKey()) {
case "index":
if (member.getValue() instanceof Number) {
obj.setIndex(((Number)member.getValue()).longValue());
}
break;
case "wait":
if (member.getValue() instanceof String) {
obj.setWait((String)member.getValue());
}
break;
}
}
}
static void toJson(BlockingQueryOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}
static void toJson(BlockingQueryOptions obj, java.util.Map json) {
json.put("index", obj.getIndex());
if (obj.getWait() != null) {
json.put("wait", obj.getWait());
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy