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