本文整理匯總了Java中org.onosproject.vtnrsc.PortPairGroup.equals方法的典型用法代碼示例。如果您正苦於以下問題:Java PortPairGroup.equals方法的具體用法?Java PortPairGroup.equals怎麽用?Java PortPairGroup.equals使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.onosproject.vtnrsc.PortPairGroup
的用法示例。
在下文中一共展示了PortPairGroup.equals方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: updatePortPairGroup
import org.onosproject.vtnrsc.PortPairGroup; //導入方法依賴的package包/類
@Override
public boolean updatePortPairGroup(PortPairGroup portPairGroup) {
checkNotNull(portPairGroup, PORT_PAIR_GROUP_NULL);
if (!portPairGroupStore.containsKey(portPairGroup.portPairGroupId())) {
log.debug("The portPairGroup is not exist whose identifier was {} ",
portPairGroup.portPairGroupId().toString());
return false;
}
portPairGroupStore.put(portPairGroup.portPairGroupId(), portPairGroup);
if (!portPairGroup.equals(portPairGroupStore.get(portPairGroup.portPairGroupId()))) {
log.debug("The portPairGroup is updated failed whose identifier was {} ",
portPairGroup.portPairGroupId().toString());
return false;
}
return true;
}
示例2: updatePortPairGroup
import org.onosproject.vtnrsc.PortPairGroup; //導入方法依賴的package包/類
@Override
public boolean updatePortPairGroup(PortPairGroup portPairGroup) {
if (!portPairGroupStore.containsKey(portPairGroup.portPairGroupId())) {
return false;
}
portPairGroupStore.put(portPairGroup.portPairGroupId(), portPairGroup);
if (!portPairGroup.equals(portPairGroupStore.get(portPairGroup.portPairGroupId()))) {
return false;
}
return true;
}