Tabnine Logo
Util.encodeContext
Code IndexAdd Tabnine to your IDE (free)

How to use
encodeContext
method
in
com.cloudinary.Util

Best Java code snippets using com.cloudinary.Util.encodeContext (Showing top 5 results out of 315)

origin: com.cloudinary/cloudinary-core

protected Map callContextApi(Map context, String command, String[] publicIds, Map options) throws IOException {
  return callContextApi(Util.encodeContext(context), command, publicIds, options);
}
origin: cloudinary/cloudinary_java

protected Map callContextApi(Map context, String command, String[] publicIds, Map options) throws IOException {
  return callContextApi(Util.encodeContext(context), command, publicIds, options);
}
origin: com.cloudinary/cloudinary-core

@SuppressWarnings("unchecked")
public static final void processWriteParameters(Map<String, Object> options, Map<String, Object> params) {
  if (options.get("headers") != null)
    params.put("headers", buildCustomHeaders(options.get("headers")));
  if (options.get("tags") != null)
    params.put("tags", StringUtils.join(ObjectUtils.asArray(options.get("tags")), ","));
  if (options.get("face_coordinates") != null)
    params.put("face_coordinates", Coordinates.parseCoordinates(options.get("face_coordinates")).toString());
  if (options.get("custom_coordinates") != null)
    params.put("custom_coordinates", Coordinates.parseCoordinates(options.get("custom_coordinates")).toString());
  if (options.get("context") != null)
    params.put("context", encodeContext(options.get("context")));
  if (options.get("access_control") != null) {
    params.put("access_control", encodeAccessControl(options.get("access_control")));
  }
  putObject("ocr", options, params);
  putObject("raw_convert", options, params);
  putObject("categorization", options, params);
  putObject("detection", options, params);
  putObject("similarity_search", options, params);
  putObject("background_removal", options, params);
  if (options.get("auto_tagging") != null)
    params.put("auto_tagging", ObjectUtils.asFloat(options.get("auto_tagging")));
}
origin: cloudinary/cloudinary_java

@SuppressWarnings("unchecked")
public static final void processWriteParameters(Map<String, Object> options, Map<String, Object> params) {
  if (options.get("headers") != null)
    params.put("headers", buildCustomHeaders(options.get("headers")));
  if (options.get("tags") != null)
    params.put("tags", StringUtils.join(ObjectUtils.asArray(options.get("tags")), ","));
  if (options.get("face_coordinates") != null)
    params.put("face_coordinates", Coordinates.parseCoordinates(options.get("face_coordinates")).toString());
  if (options.get("custom_coordinates") != null)
    params.put("custom_coordinates", Coordinates.parseCoordinates(options.get("custom_coordinates")).toString());
  if (options.get("context") != null)
    params.put("context", encodeContext(options.get("context")));
  if (options.get("access_control") != null) {
    params.put("access_control", encodeAccessControl(options.get("access_control")));
  }
  putObject("ocr", options, params);
  putObject("raw_convert", options, params);
  putObject("categorization", options, params);
  putObject("detection", options, params);
  putObject("similarity_search", options, params);
  putObject("background_removal", options, params);
  if (options.get("auto_tagging") != null)
    params.put("auto_tagging", ObjectUtils.asFloat(options.get("auto_tagging")));
}
origin: cloudinary/cloudinary_java

@Test
public void encodeContext() throws Exception {
  Map context = ObjectUtils.asMap("caption", "different = caption", "alt2", "alt|alternative");
  String result = Util.encodeContext(context);
  assertTrue("caption=different \\= caption|alt2=alt\\|alternative".equals(result) ||
      "alt2=alt\\|alternative|caption=different \\= caption".equals(result));
}
com.cloudinaryUtilencodeContext

Popular methods of Util

  • clearEmpty
  • buildCustomHeaders
  • buildEager
  • buildUploadParams
  • processWriteParameters
  • buildArchiveParams
  • encodeAccessControl
  • putArray
  • putBoolean
  • putEager
  • putObject
  • timestamp
  • putObject,
  • timestamp

Popular in Java

  • Running tasks concurrently on multiple threads
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • startActivity (Activity)
  • addToBackStack (FragmentTransaction)
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now