gpt4 book ai didi

com.sk89q.util.yaml.YAMLProcessor.getString()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-14 04:26:49 26 4
gpt4 key购买 nike

本文整理了Java中com.sk89q.util.yaml.YAMLProcessor.getString()方法的一些代码示例,展示了YAMLProcessor.getString()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YAMLProcessor.getString()方法的具体详情如下:
包路径:com.sk89q.util.yaml.YAMLProcessor
类名称:YAMLProcessor
方法名:getString

YAMLProcessor.getString介绍

暂无

代码示例

代码示例来源:origin: EngineHub/WorldEdit

wandItem = convertLegacyItem(config.getString("wand-item", wandItem));
logFile = config.getString("logging.file", logFile);
logFormat = config.getString("logging.format", logFormat);
    useInventoryCreativeOverride);
navigationWand = convertLegacyItem(config.getString("navigation-wand.item", navigationWand));
navigationWandMaxDistance = config.getInt("navigation-wand.max-distance", navigationWandMaxDistance);
navigationUseGlass = config.getBoolean("navigation.use-glass", navigationUseGlass);
scriptsDir = config.getString("scripting.dir", scriptsDir);
saveDir = config.getString("saving.dir", saveDir);
serverSideCUI = config.getBoolean("server-side-cui", true);
String snapshotsDir = config.getString("snapshots.directory", "");
if (!snapshotsDir.isEmpty()) {
  snapshotRepo = new SnapshotRepository(snapshotsDir);
String type = config.getString("shell-save-type", "").trim();
shellSaveType = type.isEmpty() ? null : type;

代码示例来源:origin: EngineHub/WorldGuard

public String getString(String node, String def) {
  String val = parentConfig.getString(node, def);
  if (config.getProperty(node) != null) {
    return config.getString(node, def);
  } else {
    return val;
  }
}

代码示例来源:origin: EngineHub/CommandBook

private boolean reloadMessages() {
  try {
    help.load();
  } catch (IOException e) {
    return false;
  }
  List<String> keys = help.getKeys("topics");
  if (keys == null) {
    help.setProperty("topics.help", demoHelpMessage);
    keys = new ArrayList<String>();
    keys.add("help");
    help.save();
  }
  for (String key : keys) {
    String information = help.getString("topics." + key);
    if (information != null && information.trim().length() != 0) {
      information = replaceColorMacros(information);
      String[] split = information.split("\\n");
      for (int i = 0; i < split.length; i++) {
        split[i] = split[i].replaceAll("[\\r\\n]", "");
      }
      messages.put(key.toLowerCase(), split);
    }
  }
  return true;
}

代码示例来源:origin: EngineHub/WorldGuard

String sqlDsn = config.getString("regions.sql.dsn", "jdbc:mysql://localhost/worldguard");
String sqlUsername = config.getString("regions.sql.username", "worldguard");
String sqlPassword = config.getString("regions.sql.password", "worldguard");
String sqlTablePrefix = config.getString("regions.sql.table-prefix", "");

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com