當前位置: 首頁>>代碼示例>>Java>>正文


Java NumberUtils.INTEGER_ONE屬性代碼示例

本文整理匯總了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;
}
 
開發者ID:telstra,項目名稱:open-kilda,代碼行數:18,代碼來源:TopologyEventsBasicTest.java

示例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;
}
 
開發者ID:lamsfoundation,項目名稱:lams,代碼行數:20,代碼來源:BooleanUtils.java


注:本文中的org.apache.commons.lang.math.NumberUtils.INTEGER_ONE屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。