Java 类gnu.trove.map.TObjectFloatMap 实例源码

项目:xcc    文件:TObjectFloatCustomHashMap.java   
/**
   * 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 );
  }
项目:HCFCore    文件:TObjectFloatCustomHashMap.java   
/**
   * 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 );
  }
项目:HCFCore    文件:TObjectFloatCustomHashMap.java   
/**
   * 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 );
  }
项目:trove-3.0.3    文件:TObjectFloatHashMap.java   
/**
 * 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 );
}
项目:trove-3.0.3    文件:TObjectFloatCustomHashMap.java   
/**
   * 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 );
  }
项目:easyrec_major    文件:TObjectFloatCustomHashMap.java   
/**
 * 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 );
}
项目:recalot.com    文件:TObjectFloatCustomHashMap.java   
/**
   * 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 );
  }
项目:easyrec-PoC    文件:TObjectFloatCustomHashMap.java   
/**
 * 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 );
}
项目:easyrec    文件:TObjectFloatCustomHashMap.java   
/**
 * 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 );
}
项目:xcc    文件:TObjectFloatHashMap.java   
/**
 * 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 );
}
项目:xcc    文件:TObjectFloatHashMap.java   
/**
 * 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;
}
项目:xcc    文件:TObjectFloatCustomHashMap.java   
/**
 * 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;
}
项目:xcc    文件:TObjectFloatMapDecorator.java   
public void readExternal(ObjectInput in)
    throws IOException, ClassNotFoundException {

    // VERSION
    in.readByte();

    // MAP
    //noinspection unchecked
    _map = ( TObjectFloatMap<K> ) in.readObject();
}
项目:HCFCore    文件:TObjectFloatHashMap.java   
/**
 * 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 );
}
项目:HCFCore    文件:TObjectFloatHashMap.java   
/**
 * 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;
}
项目:HCFCore    文件:TObjectFloatCustomHashMap.java   
/**
 * 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;
}
项目:HCFCore    文件:TObjectFloatMapDecorator.java   
public void readExternal(ObjectInput in)
    throws IOException, ClassNotFoundException {

    // VERSION
    in.readByte();

    // MAP
    //noinspection unchecked
    _map = ( TObjectFloatMap<K> ) in.readObject();
}
项目:HCFCore    文件:TObjectFloatHashMap.java   
/**
 * 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 );
}
项目:HCFCore    文件:TObjectFloatHashMap.java   
/**
 * 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;
}
项目:HCFCore    文件:TObjectFloatCustomHashMap.java   
/**
 * 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;
}
项目:HCFCore    文件:TObjectFloatMapDecorator.java   
public void readExternal(ObjectInput in)
    throws IOException, ClassNotFoundException {

    // VERSION
    in.readByte();

    // MAP
    //noinspection unchecked
    _map = ( TObjectFloatMap<K> ) in.readObject();
}
项目:trove-3.0.3    文件:TObjectFloatHashMap.java   
/**
 * 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;
}
项目:trove-3.0.3    文件:TObjectFloatCustomHashMap.java   
/**
 * 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;
}
项目:trove-3.0.3    文件:TObjectFloatMapDecorator.java   
@Override
public void readExternal(ObjectInput in)
    throws IOException, ClassNotFoundException {

    // VERSION
    in.readByte();

    // MAP
    //noinspection unchecked
    _map = ( TObjectFloatMap<K> ) in.readObject();
}
项目:easyrec_major    文件:TObjectFloatHashMap.java   
/**
 * 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 );
}
项目:easyrec_major    文件:TObjectFloatHashMap.java   
/**
 * 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;
}
项目:easyrec_major    文件:TObjectFloatCustomHashMap.java   
/**
 * 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;
}
项目:easyrec_major    文件:TObjectFloatMapDecorator.java   
public void readExternal(ObjectInput in)
    throws IOException, ClassNotFoundException {

    // VERSION
    in.readByte();

    // MAP
    //noinspection unchecked
    _map = ( TObjectFloatMap<K> ) in.readObject();
}
项目:recalot.com    文件:TObjectFloatHashMap.java   
/**
 * 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 );
}
项目:recalot.com    文件:TObjectFloatHashMap.java   
/**
 * 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;
}
项目:recalot.com    文件:TObjectFloatCustomHashMap.java   
/**
 * 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;
}
项目:recalot.com    文件:TObjectFloatMapDecorator.java   
public void readExternal(ObjectInput in)
    throws IOException, ClassNotFoundException {

    // VERSION
    in.readByte();

    // MAP
    //noinspection unchecked
    _map = ( TObjectFloatMap<K> ) in.readObject();
}
项目:easyrec-PoC    文件:TObjectFloatHashMap.java   
/**
 * 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 );
}
项目:easyrec-PoC    文件:TObjectFloatHashMap.java   
/**
 * 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;
}
项目:easyrec-PoC    文件:TObjectFloatCustomHashMap.java   
/**
 * 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;
}
项目:easyrec-PoC    文件:TObjectFloatMapDecorator.java   
public void readExternal(ObjectInput in)
    throws IOException, ClassNotFoundException {

    // VERSION
    in.readByte();

    // MAP
    //noinspection unchecked
    _map = ( TObjectFloatMap<K> ) in.readObject();
}
项目:easyrec    文件:TObjectFloatHashMap.java   
/**
 * 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 );
}
项目:easyrec    文件:TObjectFloatHashMap.java   
/**
 * 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;
}
项目:easyrec    文件:TObjectFloatCustomHashMap.java   
/**
 * 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;
}
项目:easyrec    文件:TObjectFloatMapDecorator.java   
public void readExternal(ObjectInput in)
    throws IOException, ClassNotFoundException {

    // VERSION
    in.readByte();

    // MAP
    //noinspection unchecked
    _map = ( TObjectFloatMap<K> ) in.readObject();
}