org.apache.calcite.util.Util.getBooleanProperty()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(123)

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

Util.getBooleanProperty介绍

[英]Returns the value of a system property as a boolean.

For example, the property "foo" is considered true if you supply -Dfoo or -Dfoo=true or -Dfoo=TRUE, false if you omit the flag or supply -Dfoo=false.
[中]以布尔值形式返回系统属性的值。
例如,如果提供-Dfoo或-Dfoo=true或-Dfoo=true,则属性“foo”被视为true;如果省略标志或提供-Dfoo=false,则属性“foo”被视为false。

代码示例

代码示例来源:origin: Qihoo360/Quicksql

/** Returns the value of a system property as a boolean.
 *
 * <p>For example, the property "foo" is considered true if you supply
 * {@code -Dfoo} or {@code -Dfoo=true} or {@code -Dfoo=TRUE},
 * false if you omit the flag or supply {@code -Dfoo=false}.
 *
 * @param property Property name
 * @return Whether property is true
 */
public static boolean getBooleanProperty(String property) {
 return getBooleanProperty(property, false);
}

代码示例来源:origin: org.apache.calcite/calcite-core

/** Returns the value of a system property as a boolean.
 *
 * <p>For example, the property "foo" is considered true if you supply
 * {@code -Dfoo} or {@code -Dfoo=true} or {@code -Dfoo=TRUE},
 * false if you omit the flag or supply {@code -Dfoo=false}.
 *
 * @param property Property name
 * @return Whether property is true
 */
public static boolean getBooleanProperty(String property) {
 return getBooleanProperty(property, false);
}

代码示例来源:origin: org.apache.calcite/calcite-core

Util.getBooleanProperty("calcite.test.slow");

相关文章