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