- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.sk89q.util.yaml.YAMLProcessor.getBoolean()
方法的一些代码示例,展示了YAMLProcessor.getBoolean()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YAMLProcessor.getBoolean()
方法的具体详情如下:
包路径:com.sk89q.util.yaml.YAMLProcessor
类名称:YAMLProcessor
方法名:getBoolean
暂无
代码示例来源:origin: EngineHub/WorldEdit
@Override
public void load() {
super.load();
noOpPermissions = config.getBoolean("no-op-permissions", false);
migrateLegacyFolders();
}
代码示例来源:origin: EngineHub/WorldEdit
profile = config.getBoolean("debug", profile);
traceUnflushedSessions = config.getBoolean("debugging.trace-unflushed-sessions", traceUnflushedSessions);
wandItem = convertLegacyItem(config.getString("wand-item", wandItem));
registerHelp = config.getBoolean("register-help", true);
logCommands = config.getBoolean("logging.log-commands", logCommands);
logFile = config.getString("logging.file", logFile);
logFormat = config.getString("logging.format", logFormat);
superPickaxeDrop = config.getBoolean("super-pickaxe.drop-items",
superPickaxeDrop);
superPickaxeManyDrop = config.getBoolean(
"super-pickaxe.many-drop-items", superPickaxeManyDrop);
noDoubleSlash = config.getBoolean("no-double-slash", noDoubleSlash);
useInventory = config.getBoolean("use-inventory.enable", useInventory);
useInventoryOverride = config.getBoolean("use-inventory.allow-override",
useInventoryOverride);
useInventoryCreativeOverride = config.getBoolean("use-inventory.creative-mode-overrides",
useInventoryCreativeOverride);
navigationUseGlass = config.getBoolean("navigation.use-glass", navigationUseGlass);
allowSymlinks = config.getBoolean("files.allow-symbolic-links", false);
LocalSession.MAX_HISTORY_SIZE = Math.max(0, config.getInt("history.size", 15));
SessionManager.EXPIRATION_GRACE = config.getInt("history.expiration", 10) * 60 * 1000;
showHelpInfo = config.getBoolean("show-help-on-first-use", true);
代码示例来源:origin: EngineHub/WorldEdit
public static PermissionsResolver factory(Server server, YAMLProcessor config) {
PluginManager pluginManager = server.getPluginManager();
try {
Class.forName("com.nijikokun.bukkit.Permissions.Permissions");
} catch (ClassNotFoundException e) {
return null;
}
Plugin plugin = pluginManager.getPlugin("Permissions");
// Check if plugin is loaded and has Permissions interface
if (!(plugin instanceof Permissions)) {
return null;
}
// Check for fake permissions
if (config.getBoolean("ignore-nijiperms-bridges", true) && isFakeNijiPerms(plugin)) {
return null;
}
return new NijiPermissionsResolver(server, (Permissions) plugin);
}
代码示例来源:origin: EngineHub/WorldGuard
public boolean getBoolean(String node, boolean def) {
boolean val = parentConfig.getBoolean(node, def);
if (config.getProperty(node) != null) {
return config.getBoolean(node, def);
} else {
return val;
}
}
代码示例来源:origin: EngineHub/CommandBook
@Override
public void populateConfiguration(YAMLProcessor config) {
loadItemList(config);
useDisplayNames = config.getBoolean("use-display-names", true);
lookupWithDisplayNames = config.getBoolean("lookup-with-display-names", true);
broadcastChanges = config.getBoolean("broadcast-changes", true);
crappyWrapperCompat = config.getBoolean("crappy-wrapper-compat", true);
if (crappyWrapperCompat) {
getLogger().info("Maximum wrapper compatibility is enabled. " +
"Some features have been disabled to be compatible with " +
"poorly written server wrappers.");
}
}
代码示例来源:origin: EngineHub/WorldGuard
migrateRegionsToUuid = config.getBoolean("regions.uuid-migration.perform-on-next-start", true);
keepUnresolvedNames = config.getBoolean("regions.uuid-migration.keep-names-that-lack-uuids", true);
useRegionsCreatureSpawnEvent = config.getBoolean("regions.use-creature-spawn-event", true);
useGodPermission = config.getBoolean("auto-invincible", config.getBoolean("auto-invincible-permission", false));
useGodGroup = config.getBoolean("auto-invincible-group", false);
useAmphibiousGroup = config.getBoolean("auto-no-drowning-group", false);
config.removeProperty("auto-invincible-permission");
usePlayerMove = config.getBoolean("use-player-move-event", true);
usePlayerTeleports = config.getBoolean("use-player-teleports", true);
particleEffects = config.getBoolean("use-particle-effects", true);
deopOnJoin = config.getBoolean("security.deop-everyone-on-join", false);
blockInGameOp = config.getBoolean("security.block-in-game-op-command", false);
hostKeysAllowFMLClients = config.getBoolean("security.host-keys-allow-forge-clients", false);
boolean useSqlDatabase = config.getBoolean("regions.sql.use", false);
String sqlDsn = config.getString("regions.sql.dsn", "jdbc:mysql://localhost/worldguard");
String sqlUsername = config.getString("regions.sql.username", "worldguard");
我想在用户第一次打开应用程序时显示一些 Activity ,我有相应的代码,但是当我将代码添加到主要 Activity 时,它显示一个错误,无法解析符号“getBoolean” 我不知道该怎么办,有人
我有一个单元测试,要求我为 firebase 配置条目返回 true 或 false。但即使我将模拟设置为 true,它在单元测试运行时也总是返回 false。 这是我的模拟: doReturn(tr
我在 android 中遇到 SharedPreference.getBoolean 的问题,非常令人沮丧。请参阅以下代码 fragment : Map all = preferences.getAl
我的 SQL SPROC 结果集中有一个字段,它是一个返回 1 或 0(即 True/False)的计算 CASE 语句。 当我尝试使用 SqlDataReader 类的 GetBoolean 方法时
我正在编写一个需要检查默认首选项设置并做出相应响应的程序。 getBoolean 方法始终返回 false,即使 R.xml.preferences 将 defaultValues 设置为 true。
在图片上您可以看到 bool 变量采用默认值,即使在 SharedPreferences 中有一个键值对具有正确的键。什么会导致这个?在代码中,这是在 onCreate 方法的末尾。在此之后调用 on
我正在通过hadoop进行pdf文档聚类工作,因此我正在通过阅读Internet上的一些示例来学习mapreduce。 job.get("map.input.file") job.getboolean
这可能是 Android 101,但我现在已经习惯了 SDK。无论如何,我根本不明白这个错误。我想根据我的共享首选项文件更新一些复选框选择,我使用以下方法: private void updatePr
出于某种原因,对于默认值,每次都会返回 true。我卸载了我的应用程序并重新安装,然后执行以下操作来初始化值。但由于某种原因, bool 值设置为 true 而不是 false。 Shared
有一次我遇到了问题,你们帮了大忙。所以我又遇到了另一个我遇到的问题......:/ 我正在运行一个扩展 BroadcastReceiver 的自定义 NetworkReceiver。我想检测手机何时连
我制作了一个类来处理重要的数据更改,例如 App 购买状态和其他内容。 为了这个目标,我创建了一个类来设置和读取值。但问题是每当我调用 appIsPurchased() 方法时,结果都是真实的,但自从
本文整理了Java中bibliothek.util.xml.XElement.getBoolean()方法的一些代码示例,展示了XElement.getBoolean()的具体用法。这些代码示例主要来
本文整理了Java中facebook4j.internal.util.z_F4JInternalParseUtil.getBoolean()方法的一些代码示例,展示了z_F4JInternalPars
我有以下代码,其中包含错误检查表达式: JSONObject obj = new JSONObject(response); if (!obj.getBoolean("error")) 我想知道 ge
我想保存我的游戏设置(bgMusic、声音和振动),但在加载应用程序时启动时崩溃。代码是: private SharedPreferences preferences; private SharedP
差不多,我正在尝试编写一个让用户选择文件的简单程序。不幸的是,通过 Swing 的 JFileChooser 有点过时了,所以我正在尝试为此使用 JavaFX FileChooser。目标是将 Fil
我在 Visual Studio 2013 中使用 mysql-connector-c++-1.1.4-winx64。连接到特定数据库并读取整数值是可行的,但无法检索任何 bool 值。 我可以编译包
我正在尝试制作读取 ini 文件的函数。为什么 Boolean.getBoolean("true") 返回 false?如何在 java 1.4 中以正确的方式使用这个对话?是否取决于系统设置? 最佳
本文整理了Java中org.bukkit.configuration.file.YamlConfiguration.getBoolean()方法的一些代码示例,展示了YamlConfiguration
本文整理了Java中com.sk89q.util.yaml.YAMLProcessor.getBoolean()方法的一些代码示例,展示了YAMLProcessor.getBoolean()的具体用法
我是一名优秀的程序员,十分优秀!