本文整理汇总了Java中gnu.trove.TByteCollection类的典型用法代码示例。如果您正苦于以下问题:Java TByteCollection类的具体用法?Java TByteCollection怎么用?Java TByteCollection使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TByteCollection类属于gnu.trove包,在下文中一共展示了TByteCollection类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: removeAll
import gnu.trove.TByteCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean removeAll( TByteCollection collection ) {
if ( this == collection ) {
clear();
return true;
}
boolean changed = false;
TByteIterator iter = collection.iterator();
while ( iter.hasNext() ) {
byte element = iter.next();
if ( remove( element ) ) {
changed = true;
}
}
return changed;
}
示例2: removeAll
import gnu.trove.TByteCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean removeAll( TByteCollection collection ) {
if ( collection == this ) {
clear();
return true;
}
boolean changed = false;
TByteIterator iter = collection.iterator();
while ( iter.hasNext() ) {
byte element = iter.next();
if ( remove( element ) ) {
changed = true;
}
}
return changed;
}
示例3: containsAll
import gnu.trove.TByteCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean containsAll( TByteCollection collection ) {
TByteIterator iter = collection.iterator();
while ( iter.hasNext() ) {
if ( ! TObjectByteHashMap.this.containsValue( iter.next() ) ) {
return false;
}
}
return true;
}
示例4: retainAll
import gnu.trove.TByteCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean retainAll( TByteCollection collection ) {
if ( this == collection ) {
return false;
}
boolean modified = false;
TByteIterator iter = iterator();
while ( iter.hasNext() ) {
if ( ! collection.contains( iter.next() ) ) {
iter.remove();
modified = true;
}
}
return modified;
}
示例5: containsAll
import gnu.trove.TByteCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean containsAll( TByteCollection collection ) {
if ( collection == this ) {
return true;
}
TByteIterator iter = collection.iterator();
while ( iter.hasNext() ) {
if ( ! TByteObjectHashMap.this.containsKey( iter.next() ) ) {
return false;
}
}
return true;
}
示例6: containsAll
import gnu.trove.TByteCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean containsAll( TByteCollection collection ) {
TByteIterator iter = collection.iterator();
while ( iter.hasNext() ) {
byte element = iter.next();
if ( ! contains( element ) ) {
return false;
}
}
return true;
}
示例7: addAll
import gnu.trove.TByteCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean addAll(TByteCollection collection) {
boolean ret = false;
for (TByteIterator it = collection.iterator(); it.hasNext();) {
byte i = it.next();
if (add(i))
ret = true;
}
return ret;
}
示例8: TByteHashSet
import gnu.trove.TByteCollection; //导入依赖的package包/类
/**
* Creates a new <code>TByteHashSet</code> instance that is a copy
* of the existing set.
*
* @param collection a <tt>TByteSet</tt> that will be duplicated.
*/
public TByteHashSet( TByteCollection collection ) {
this( Math.max( collection.size(), DEFAULT_CAPACITY ) );
if ( collection instanceof TByteHashSet ) {
TByteHashSet hashset = ( TByteHashSet ) collection;
this._loadFactor = hashset._loadFactor;
this.no_entry_value = hashset.no_entry_value;
//noinspection RedundantCast
if ( this.no_entry_value != ( byte ) 0 ) {
Arrays.fill( _set, this.no_entry_value );
}
setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) );
}
addAll( collection );
}
示例9: addAll
import gnu.trove.TByteCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean addAll( TByteCollection collection ) {
boolean changed = false;
TByteIterator iter = collection.iterator();
while ( iter.hasNext() ) {
byte element = iter.next();
if ( add( element ) ) {
changed = true;
}
}
return changed;
}
示例10: retainAll
import gnu.trove.TByteCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean retainAll( TByteCollection collection ) {
if ( this == collection ) {
return false;
}
boolean modified = false;
TByteIterator iter = iterator();
while ( iter.hasNext() ) {
if ( ! collection.contains( iter.next() ) ) {
iter.remove();
modified = true;
}
}
return modified;
}
示例11: containsAll
import gnu.trove.TByteCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean containsAll( TByteCollection collection ) {
if ( this == collection ) {
return true;
}
TByteIterator iter = collection.iterator();
while ( iter.hasNext() ) {
byte element = iter.next();
if ( ! contains( element ) ) {
return false;
}
}
return true;
}
示例12: containsAll
import gnu.trove.TByteCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean containsAll(TByteCollection collection) {
if (isEmpty())
return false;
for (TByteIterator it = collection.iterator(); it.hasNext();) {
byte i = it.next();
if (!(contains(i)))
return false;
}
return true;
}
示例13: retainAll
import gnu.trove.TByteCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean retainAll(TByteCollection collection) {
boolean modified = false;
TByteIterator iter = iterator();
while (iter.hasNext()) {
if (!collection.contains(iter.next())) {
iter.remove();
modified = true;
}
}
return modified;
}
示例14: removeAll
import gnu.trove.TByteCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean removeAll(TByteCollection collection) {
boolean modified = false;
TByteIterator iter = iterator();
while (iter.hasNext()) {
if (collection.contains(iter.next())) {
iter.remove();
modified = true;
}
}
return modified;
}
示例15: containsAll
import gnu.trove.TByteCollection; //导入依赖的package包/类
/** {@inheritDoc} */
public boolean containsAll( TByteCollection collection ) {
TByteIterator iter = collection.iterator();
while ( iter.hasNext() ) {
if ( ! TObjectByteCustomHashMap.this.containsValue( iter.next() ) ) {
return false;
}
}
return true;
}