/** * Creates a new <code>TObjectShortCustomHashMap</code> that contains the entries * in the map passed to it. * * @param map the <tt>TObjectShortMap</tt> to be copied. */ public TObjectShortCustomHashMap( HashingStrategy<? super K> strategy, TObjectShortMap<? extends K> map ) { this( strategy, map.size(), 0.5f, map.getNoEntryValue() ); if ( map instanceof TObjectShortCustomHashMap ) { TObjectShortCustomHashMap hashmap = ( TObjectShortCustomHashMap ) map; this._loadFactor = hashmap._loadFactor; this.no_entry_value = hashmap.no_entry_value; this.strategy = hashmap.strategy; //noinspection RedundantCast if ( this.no_entry_value != ( short ) 0 ) { Arrays.fill( _values, this.no_entry_value ); } setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) ); } putAll( map ); }
/** * Creates a new <code>TObjectShortHashMap</code> that contains the entries * in the map passed to it. * * @param map the <tt>TObjectShortMap</tt> to be copied. */ @SuppressWarnings("rawtypes") public TObjectShortHashMap( TObjectShortMap<? extends K> map ) { this( map.size(), 0.5f, map.getNoEntryValue() ); if ( map instanceof TObjectShortHashMap ) { TObjectShortHashMap hashmap = ( TObjectShortHashMap ) map; this._loadFactor = hashmap._loadFactor; this.no_entry_value = hashmap.no_entry_value; //noinspection RedundantCast if ( this.no_entry_value != ( short ) 0 ) { Arrays.fill( _values, this.no_entry_value ); } setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) ); } putAll( map ); }
/** * Creates a new <code>TObjectShortCustomHashMap</code> that contains the entries * in the map passed to it. * * @param map the <tt>TObjectShortMap</tt> to be copied. */ @SuppressWarnings({ "rawtypes", "unchecked" }) public TObjectShortCustomHashMap( HashingStrategy<? super K> strategy, TObjectShortMap<? extends K> map ) { this( strategy, map.size(), 0.5f, map.getNoEntryValue() ); if ( map instanceof TObjectShortCustomHashMap ) { TObjectShortCustomHashMap hashmap = ( TObjectShortCustomHashMap ) map; this._loadFactor = hashmap._loadFactor; this.no_entry_value = hashmap.no_entry_value; this.strategy = hashmap.strategy; //noinspection RedundantCast if ( this.no_entry_value != ( short ) 0 ) { Arrays.fill( _values, this.no_entry_value ); } setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) ); } putAll( map ); }
/** * Creates a new <code>TObjectShortCustomHashMap</code> that contains the entries * in the map passed to it. * * @param map the <tt>TObjectShortMap</tt> to be copied. */ public TObjectShortCustomHashMap( HashingStrategy<K> strategy, TObjectShortMap<K> map ) { this( strategy, map.size(), 0.5f, map.getNoEntryValue() ); if ( map instanceof TObjectShortCustomHashMap ) { TObjectShortCustomHashMap hashmap = ( TObjectShortCustomHashMap ) map; this._loadFactor = hashmap._loadFactor; this.no_entry_value = hashmap.no_entry_value; this.strategy = hashmap.strategy; //noinspection RedundantCast if ( this.no_entry_value != ( short ) 0 ) { Arrays.fill( _values, this.no_entry_value ); } setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) ); } putAll( map ); }
/** * Creates a new <code>TObjectShortHashMap</code> that contains the entries * in the map passed to it. * * @param map the <tt>TObjectShortMap</tt> to be copied. */ public TObjectShortHashMap( TObjectShortMap<? extends K> map ) { this( map.size(), 0.5f, map.getNoEntryValue() ); if ( map instanceof TObjectShortHashMap ) { TObjectShortHashMap hashmap = ( TObjectShortHashMap ) map; this._loadFactor = hashmap._loadFactor; this.no_entry_value = hashmap.no_entry_value; //noinspection RedundantCast if ( this.no_entry_value != ( short ) 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 TObjectShortMap ) ) { return false; } TObjectShortMap that = ( TObjectShortMap ) other; if ( that.size() != this.size() ) { return false; } try { TObjectShortIterator iter = this.iterator(); while ( iter.hasNext() ) { iter.advance(); Object key = iter.key(); short 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 = ( TObjectShortMap<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 TObjectShortMap ) ) { return false; } TObjectShortMap that = ( TObjectShortMap ) other; if ( that.size() != this.size() ) { return false; } try { TObjectShortIterator iter = this.iterator(); while ( iter.hasNext() ) { iter.advance(); Object key = iter.key(); short 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 = ( TObjectShortMap<K> ) in.readObject(); }
/** * Creates a new <code>TObjectShortHashMap</code> that contains the entries * in the map passed to it. * * @param map the <tt>TObjectShortMap</tt> to be copied. */ public TObjectShortHashMap( TObjectShortMap<K> map ) { this( map.size(), 0.5f, map.getNoEntryValue() ); if ( map instanceof TObjectShortHashMap ) { TObjectShortHashMap hashmap = ( TObjectShortHashMap ) map; this._loadFactor = hashmap._loadFactor; this.no_entry_value = hashmap.no_entry_value; //noinspection RedundantCast if ( this.no_entry_value != ( short ) 0 ) { Arrays.fill( _values, this.no_entry_value ); } setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) ); } putAll( map ); }