本文整理匯總了Java中org.apache.commons.lang.BooleanUtils.toBooleanDefaultIfNull方法的典型用法代碼示例。如果您正苦於以下問題:Java BooleanUtils.toBooleanDefaultIfNull方法的具體用法?Java BooleanUtils.toBooleanDefaultIfNull怎麽用?Java BooleanUtils.toBooleanDefaultIfNull使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.commons.lang.BooleanUtils
的用法示例。
在下文中一共展示了BooleanUtils.toBooleanDefaultIfNull方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getUpdateAssignedReleases
import org.apache.commons.lang.BooleanUtils; //導入方法依賴的package包/類
/**
* Return the flag which indicates whether the created schema version should automatically be assigned to the releases which reference the schema.
*
* @return
*/
default boolean getUpdateAssignedReleases() {
String value = getParameter(UPDATE_ASSIGNED_RELEASES_QUERY_PARAM_KEY);
return BooleanUtils.toBooleanDefaultIfNull(BooleanUtils.toBooleanObject(value), true);
}
示例2: isRecursive
import org.apache.commons.lang.BooleanUtils; //導入方法依賴的package包/類
/**
* Check whether the recursive flag for recursive deletion is enabled.
*
* @return
*/
default boolean isRecursive() {
return BooleanUtils.toBooleanDefaultIfNull(Boolean.valueOf(getParameter(RECURSIVE_PARAMETER_KEY)), false);
}
示例3: isRecursive
import org.apache.commons.lang.BooleanUtils; //導入方法依賴的package包/類
/**
* Check whether the recursive flag for recursively publishing is enabled.
*
* @return
*/
default boolean isRecursive() {
return BooleanUtils.toBooleanDefaultIfNull(Boolean.valueOf(getParameter(RECURSIVE_PARAMETER_KEY)), false);
}