本文整理汇总了Java中org.apache.commons.lang.math.NumberUtils.INTEGER_ONE属性的典型用法代码示例。如果您正苦于以下问题:Java NumberUtils.INTEGER_ONE属性的具体用法?Java NumberUtils.INTEGER_ONE怎么用?Java NumberUtils.INTEGER_ONE使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.apache.commons.lang.math.NumberUtils
的用法示例。
在下文中一共展示了NumberUtils.INTEGER_ONE属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: isSwitchHasLessThanTwoLinks
private boolean isSwitchHasLessThanTwoLinks(String switchId, List<IslInfoData> links) {
int inputsAmount = 0;
int outputsAmount = 0;
for (IslInfoData isl : links) {
for (PathNode node : isl.getPath()) {
if (switchId.equalsIgnoreCase(node.getSwitchId())) {
if (node.getSeqId() == 0) {
outputsAmount++;
} else if (node.getSeqId() == 1) {
inputsAmount++;
}
}
}
}
//check whether switch has more than one link in both direction (sequence id 0 and 1)
return inputsAmount <= NumberUtils.INTEGER_ONE && outputsAmount <= NumberUtils.INTEGER_ONE;
}
示例2: toIntegerObject
/**
* <p>Converts a Boolean to a Integer using the convention that
* <code>zero</code> is <code>false</code>.</p>
*
* <p><code>null</code> will be converted to <code>null</code>.</p>
*
* <pre>
* BooleanUtils.toIntegerObject(Boolean.TRUE) = new Integer(1)
* BooleanUtils.toIntegerObject(Boolean.FALSE) = new Integer(0)
* </pre>
*
* @param bool the Boolean to convert
* @return one if Boolean.TRUE, zero if Boolean.FALSE, <code>null</code> if <code>null</code>
*/
public static Integer toIntegerObject(Boolean bool) {
if (bool == null) {
return null;
}
return bool.booleanValue() ? NumberUtils.INTEGER_ONE : NumberUtils.INTEGER_ZERO;
}