本文整理匯總了Java中com.google.common.collect.Multiset.remove方法的典型用法代碼示例。如果您正苦於以下問題:Java Multiset.remove方法的具體用法?Java Multiset.remove怎麽用?Java Multiset.remove使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.google.common.collect.Multiset
的用法示例。
在下文中一共展示了Multiset.remove方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: testEquals_differentElements
import com.google.common.collect.Multiset; //導入方法依賴的package包/類
@CollectionSize.Require(absent = ZERO)
public void testEquals_differentElements() {
Multiset<E> other = HashMultiset.create(getSampleElements());
other.remove(e0());
other.add(e3());
assertFalse("multiset equals a multiset with different elements", getMultiset().equals(other));
}
示例2: cleanUpForCollectedState
import com.google.common.collect.Multiset; //導入方法依賴的package包/類
/**
* There may be multiple child injectors blacklisting a certain key so only remove the source
* that's relevant.
*/
private void cleanUpForCollectedState(Set<KeyAndSource> keysAndSources) {
synchronized (lock) {
for (KeyAndSource keyAndSource : keysAndSources) {
Multiset<Object> set = backingMap.get(keyAndSource.key);
if (set != null) {
set.remove(keyAndSource.source);
if (set.isEmpty()) {
backingMap.remove(keyAndSource.key);
}
}
}
}
}