/** * Creates a new <code>TObjectByteCustomHashMap</code> that contains the entries * in the map passed to it. * * @param map the <tt>TObjectByteMap</tt> to be copied. */ public TObjectByteCustomHashMap( HashingStrategy<? super K> strategy, TObjectByteMap<? extends K> map ) { this( strategy, map.size(), 0.5f, map.getNoEntryValue() ); if ( map instanceof TObjectByteCustomHashMap ) { TObjectByteCustomHashMap hashmap = ( TObjectByteCustomHashMap ) map; this._loadFactor = hashmap._loadFactor; this.no_entry_value = hashmap.no_entry_value; this.strategy = hashmap.strategy; //noinspection RedundantCast if ( this.no_entry_value != ( byte ) 0 ) { Arrays.fill( _values, this.no_entry_value ); } setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) ); } putAll( map ); }
/** * Creates a new <code>TObjectByteHashMap</code> that contains the entries * in the map passed to it. * * @param map the <tt>TObjectByteMap</tt> to be copied. */ @SuppressWarnings("rawtypes") public TObjectByteHashMap( TObjectByteMap<? extends K> map ) { this( map.size(), 0.5f, map.getNoEntryValue() ); if ( map instanceof TObjectByteHashMap ) { TObjectByteHashMap hashmap = ( TObjectByteHashMap ) map; this._loadFactor = hashmap._loadFactor; this.no_entry_value = hashmap.no_entry_value; //noinspection RedundantCast if ( this.no_entry_value != ( byte ) 0 ) { Arrays.fill( _values, this.no_entry_value ); } setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) ); } putAll( map ); }
/** * Creates a new <code>TObjectByteCustomHashMap</code> that contains the entries * in the map passed to it. * * @param map the <tt>TObjectByteMap</tt> to be copied. */ @SuppressWarnings({ "rawtypes", "unchecked" }) public TObjectByteCustomHashMap( HashingStrategy<? super K> strategy, TObjectByteMap<? extends K> map ) { this( strategy, map.size(), 0.5f, map.getNoEntryValue() ); if ( map instanceof TObjectByteCustomHashMap ) { TObjectByteCustomHashMap hashmap = ( TObjectByteCustomHashMap ) map; this._loadFactor = hashmap._loadFactor; this.no_entry_value = hashmap.no_entry_value; this.strategy = hashmap.strategy; //noinspection RedundantCast if ( this.no_entry_value != ( byte ) 0 ) { Arrays.fill( _values, this.no_entry_value ); } setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) ); } putAll( map ); }
/** * Creates a new <code>TObjectByteCustomHashMap</code> that contains the entries * in the map passed to it. * * @param map the <tt>TObjectByteMap</tt> to be copied. */ public TObjectByteCustomHashMap( HashingStrategy<K> strategy, TObjectByteMap<K> map ) { this( strategy, map.size(), 0.5f, map.getNoEntryValue() ); if ( map instanceof TObjectByteCustomHashMap ) { TObjectByteCustomHashMap hashmap = ( TObjectByteCustomHashMap ) map; this._loadFactor = hashmap._loadFactor; this.no_entry_value = hashmap.no_entry_value; this.strategy = hashmap.strategy; //noinspection RedundantCast if ( this.no_entry_value != ( byte ) 0 ) { Arrays.fill( _values, this.no_entry_value ); } setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) ); } putAll( map ); }
/** * Creates a new <code>TObjectByteHashMap</code> that contains the entries * in the map passed to it. * * @param map the <tt>TObjectByteMap</tt> to be copied. */ public TObjectByteHashMap( TObjectByteMap<? extends K> map ) { this( map.size(), 0.5f, map.getNoEntryValue() ); if ( map instanceof TObjectByteHashMap ) { TObjectByteHashMap hashmap = ( TObjectByteHashMap ) map; this._loadFactor = hashmap._loadFactor; this.no_entry_value = hashmap.no_entry_value; //noinspection RedundantCast if ( this.no_entry_value != ( byte ) 0 ) { Arrays.fill( _values, this.no_entry_value ); } setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) ); } putAll( map ); }
/** * Compares this map with another map for equality of their stored * entries. * * @param other an <code>Object</code> value * @return a <code>boolean</code> value */ public boolean equals( Object other ) { if ( ! ( other instanceof TObjectByteMap ) ) { return false; } TObjectByteMap that = ( TObjectByteMap ) other; if ( that.size() != this.size() ) { return false; } try { TObjectByteIterator iter = this.iterator(); while ( iter.hasNext() ) { iter.advance(); Object key = iter.key(); byte value = iter.value(); if ( value == no_entry_value ) { if ( !( that.get( key ) == that.getNoEntryValue() && that.containsKey( key ) ) ) { return false; } } else { if ( value != that.get( key ) ) { return false; } } } } catch ( ClassCastException ex ) { // unused. } return true; }
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { // VERSION in.readByte(); // MAP //noinspection unchecked _map = ( TObjectByteMap<K> ) in.readObject(); }
/** * Compares this map with another map for equality of their stored * entries. * * @param other an <code>Object</code> value * @return a <code>boolean</code> value */ @Override @SuppressWarnings("rawtypes") public boolean equals( Object other ) { if ( ! ( other instanceof TObjectByteMap ) ) { return false; } TObjectByteMap that = ( TObjectByteMap ) other; if ( that.size() != this.size() ) { return false; } try { TObjectByteIterator iter = this.iterator(); while ( iter.hasNext() ) { iter.advance(); Object key = iter.key(); byte value = iter.value(); if ( value == no_entry_value ) { if ( !( that.get( key ) == that.getNoEntryValue() && that.containsKey( key ) ) ) { return false; } } else { if ( value != that.get( key ) ) { return false; } } } } catch ( ClassCastException ex ) { // unused. } return true; }
@Override public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { // VERSION in.readByte(); // MAP //noinspection unchecked _map = ( TObjectByteMap<K> ) in.readObject(); }
/** * Creates a new <code>TObjectByteHashMap</code> that contains the entries * in the map passed to it. * * @param map the <tt>TObjectByteMap</tt> to be copied. */ public TObjectByteHashMap( TObjectByteMap<K> map ) { this( map.size(), 0.5f, map.getNoEntryValue() ); if ( map instanceof TObjectByteHashMap ) { TObjectByteHashMap hashmap = ( TObjectByteHashMap ) map; this._loadFactor = hashmap._loadFactor; this.no_entry_value = hashmap.no_entry_value; //noinspection RedundantCast if ( this.no_entry_value != ( byte ) 0 ) { Arrays.fill( _values, this.no_entry_value ); } setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) ); } putAll( map ); }
/** * Compares this map with another map for equality of their stored * entries. * * @param other an <code>Object</code> value * @return a <code>boolean</code> value */ public boolean equals( Object other ) { if ( ! ( other instanceof TObjectByteMap ) ) { return false; } TObjectByteMap that = ( TObjectByteMap ) other; if ( that.size() != this.size() ) { return false; } try { TObjectByteIterator iter = this.iterator(); while ( iter.hasNext() ) { iter.advance(); Object key = iter.key(); byte value = iter.value(); if ( value == no_entry_value ) { if ( !( that.get( key ) == that.getNoEntryValue() && that.containsKey( key ) ) ) { return false; } } else { if ( value != that.get( key ) ) { return false; } } } } catch ( ClassCastException ex ) { // unused. logger.warn("An error occurred!", ex); } return true; }