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

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

    // VERSION
    in.readByte();

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

    // VERSION
    in.readByte();

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

    // VERSION
    in.readByte();

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

    // VERSION
    in.readByte();

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

    // VERSION
    in.readByte();

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

    // VERSION
    in.readByte();

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

    // VERSION
    in.readByte();

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

    // VERSION
    in.readByte();

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