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

io.github.yeyuexia.merge.helper.Helper Maven / Gradle / Ivy

There is a newer version: 1.4.8
Show newest version
package io.github.yeyuexia.merge.helper;

public final class Helper {

  public static String getPath(String path, String name) {
    return "".equals(path) ? name : String.format("%s.%s", path, name);
  }

  public static String getCollectionPath(String path, String index) {
    return "".equals(path) ? String.format("{%s}", index) : String.format("%s{%s}", path, index);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy