All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arangodb.shaded.vertx.core.file.CopyOptionsConverter Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
package com.arangodb.shaded.vertx.core.file;

import com.arangodb.shaded.vertx.core.json.JsonObject;
import com.arangodb.shaded.vertx.core.json.JsonArray;
import com.arangodb.shaded.vertx.core.json.impl.JsonUtil;
import java.time.Instant;
import java.time.format.DateTimeFormatter;
import java.util.Base64;

/**
 * Converter and mapper for {@link com.arangodb.shaded.vertx.core.file.CopyOptions}.
 * NOTE: This class has been automatically generated from the {@link com.arangodb.shaded.vertx.core.file.CopyOptions} original class using Vert.x codegen.
 */
public class CopyOptionsConverter {


  private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
  private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;

   static void fromJson(Iterable> json, CopyOptions obj) {
    for (java.util.Map.Entry member : json) {
      switch (member.getKey()) {
        case "atomicMove":
          if (member.getValue() instanceof Boolean) {
            obj.setAtomicMove((Boolean)member.getValue());
          }
          break;
        case "copyAttributes":
          if (member.getValue() instanceof Boolean) {
            obj.setCopyAttributes((Boolean)member.getValue());
          }
          break;
        case "nofollowLinks":
          if (member.getValue() instanceof Boolean) {
            obj.setNofollowLinks((Boolean)member.getValue());
          }
          break;
        case "replaceExisting":
          if (member.getValue() instanceof Boolean) {
            obj.setReplaceExisting((Boolean)member.getValue());
          }
          break;
      }
    }
  }

   static void toJson(CopyOptions obj, JsonObject json) {
    toJson(obj, json.getMap());
  }

   static void toJson(CopyOptions obj, java.util.Map json) {
    json.put("atomicMove", obj.isAtomicMove());
    json.put("copyAttributes", obj.isCopyAttributes());
    json.put("nofollowLinks", obj.isNofollowLinks());
    json.put("replaceExisting", obj.isReplaceExisting());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy