本文整理汇总了Java中gnu.trove.map.TByteIntMap类的典型用法代码示例。如果您正苦于以下问题:Java TByteIntMap类的具体用法?Java TByteIntMap怎么用?Java TByteIntMap使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TByteIntMap类属于gnu.trove.map包,在下文中一共展示了TByteIntMap类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: TByteIntHashMap
import gnu.trove.map.TByteIntMap; //导入依赖的package包/类
/**
* Creates a new <code>TByteIntHashMap</code> instance containing
* all of the entries in the map passed in.
*
* @param map a <tt>TByteIntMap</tt> that will be duplicated.
*/
public TByteIntHashMap( TByteIntMap map ) {
super( map.size() );
if ( map instanceof TByteIntHashMap ) {
TByteIntHashMap hashmap = ( TByteIntHashMap ) map;
this._loadFactor = hashmap._loadFactor;
this.no_entry_key = hashmap.no_entry_key;
this.no_entry_value = hashmap.no_entry_value;
//noinspection RedundantCast
if ( this.no_entry_key != ( byte ) 0 ) {
Arrays.fill( _set, this.no_entry_key );
}
//noinspection RedundantCast
if ( this.no_entry_value != ( int ) 0 ) {
Arrays.fill( _values, this.no_entry_value );
}
setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) );
}
putAll( map );
}
示例2: putAll
import gnu.trove.map.TByteIntMap; //导入依赖的package包/类
/** {@inheritDoc} */
public void putAll( TByteIntMap map ) {
ensureCapacity( map.size() );
TByteIntIterator iter = map.iterator();
while ( iter.hasNext() ) {
iter.advance();
this.put( iter.key(), iter.value() );
}
}
示例3: equals
import gnu.trove.map.TByteIntMap; //导入依赖的package包/类
/** {@inheritDoc} */
@Override
public boolean equals( Object other ) {
if ( ! ( other instanceof TByteIntMap ) ) {
return false;
}
TByteIntMap that = ( TByteIntMap ) other;
if ( that.size() != this.size() ) {
return false;
}
int[] values = _values;
byte[] states = _states;
int this_no_entry_value = getNoEntryValue();
int that_no_entry_value = that.getNoEntryValue();
for ( int i = values.length; i-- > 0; ) {
if ( states[i] == FULL ) {
byte key = _set[i];
int that_value = that.get( key );
int this_value = values[i];
if ( ( this_value != that_value ) &&
( this_value != this_no_entry_value ) &&
( that_value != that_no_entry_value ) ) {
return false;
}
}
}
return true;
}
示例4: readExternal
import gnu.trove.map.TByteIntMap; //导入依赖的package包/类
public void readExternal( ObjectInput in )
throws IOException, ClassNotFoundException {
// VERSION
in.readByte();
// MAP
_map = ( TByteIntMap ) in.readObject();
}
示例5: putAll
import gnu.trove.map.TByteIntMap; //导入依赖的package包/类
/** {@inheritDoc} */
@Override
public void putAll( TByteIntMap map ) {
ensureCapacity( map.size() );
TByteIntIterator iter = map.iterator();
while ( iter.hasNext() ) {
iter.advance();
this.put( iter.key(), iter.value() );
}
}
示例6: equals
import gnu.trove.map.TByteIntMap; //导入依赖的package包/类
/** {@inheritDoc} */
@Override
public boolean equals( Object other ) {
if ( ! ( other instanceof TByteIntMap ) ) {
return false;
}
TByteIntMap that = ( TByteIntMap ) other;
if ( that.size() != this.size() ) {
return false;
}
TIntOffheapArray values = _values;
TByteOffheapArray states = _states;
int this_no_entry_value = getNoEntryValue();
int that_no_entry_value = that.getNoEntryValue();
for ( int i = capacity(); i-- > 0; ) {
if ( states.get( i ) == FULL ) {
byte key = _set.get( i );
int that_value = that.get( key );
int this_value = values.get( i );
if ( ( this_value != that_value ) &&
( this_value != this_no_entry_value ) &&
( that_value != that_no_entry_value ) ) {
return false;
}
}
}
return true;
}
示例7: readExternal
import gnu.trove.map.TByteIntMap; //导入依赖的package包/类
@Override
public void readExternal( ObjectInput in )
throws IOException, ClassNotFoundException {
// VERSION
in.readByte();
// MAP
_map = ( TByteIntMap ) in.readObject();
}
示例8: getMap
import gnu.trove.map.TByteIntMap; //导入依赖的package包/类
public TByteIntMap getMap() {
return container;
}
示例9: TByteIntMapDecorator
import gnu.trove.map.TByteIntMap; //导入依赖的package包/类
/**
* Creates a wrapper that decorates the specified primitive map.
*
* @param map the <tt>TByteIntMap</tt> to wrap.
*/
public TByteIntMapDecorator( TByteIntMap map ) {
super();
this._map = map;
}
示例10: getMap
import gnu.trove.map.TByteIntMap; //导入依赖的package包/类
/**
* Returns a reference to the map wrapped by this decorator.
*
* @return the wrapped <tt>TByteIntMap</tt> instance.
*/
public TByteIntMap getMap() {
return _map;
}